@@ -108,7 +108,6 @@ type IsomorphicLoadedClerk = Without<
108108 | 'mountSignUp'
109109 | 'mountSignIn'
110110 | 'mountUserProfile'
111- | '__experimental_mountUserVerification'
112111 | 'client'
113112> & {
114113 // TODO: Align return type and parms
@@ -154,7 +153,6 @@ type IsomorphicLoadedClerk = Without<
154153 mountSignUp : ( node : HTMLDivElement , props : SignUpProps ) => void ;
155154 mountSignIn : ( node : HTMLDivElement , props : SignInProps ) => void ;
156155 mountUserProfile : ( node : HTMLDivElement , props : UserProfileProps ) => void ;
157- __experimental_mountUserVerification : ( node : HTMLDivElement , props : __experimental_UserVerificationProps ) => void ;
158156 client : ClientResource | undefined ;
159157} ;
160158
@@ -178,7 +176,6 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
178176 private premountCreateOrganizationNodes = new Map < HTMLDivElement , CreateOrganizationProps > ( ) ;
179177 private premountOrganizationSwitcherNodes = new Map < HTMLDivElement , OrganizationSwitcherProps > ( ) ;
180178 private premountOrganizationListNodes = new Map < HTMLDivElement , OrganizationListProps > ( ) ;
181- private premountUserVerificationNodes = new Map < HTMLDivElement , __experimental_UserVerificationProps > ( ) ;
182179 private premountMethodCalls = new Map < MethodName < BrowserClerk > , MethodCallback > ( ) ;
183180 // A separate Map of `addListener` method calls to handle multiple listeners.
184181 private premountAddListenerCalls = new Map <
@@ -541,10 +538,6 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
541538 clerkjs . mountUserProfile ( node , props ) ;
542539 } ) ;
543540
544- this . premountUserVerificationNodes . forEach ( ( props : __experimental_UserVerificationProps , node : HTMLDivElement ) => {
545- clerkjs . __experimental_mountUserVerification ( node , props ) ;
546- } ) ;
547-
548541 this . premountUserButtonNodes . forEach ( ( props : UserButtonProps , node : HTMLDivElement ) => {
549542 clerkjs . mountUserButton ( node , props ) ;
550543 } ) ;
@@ -768,22 +761,6 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
768761 }
769762 } ;
770763
771- __experimental_mountUserVerification = ( node : HTMLDivElement , props : __experimental_UserVerificationProps ) : void => {
772- if ( this . clerkjs && this . #loaded) {
773- this . clerkjs . __experimental_mountUserVerification ( node , props ) ;
774- } else {
775- this . premountUserVerificationNodes . set ( node , props ) ;
776- }
777- } ;
778-
779- __experimental_unmountUserVerification = ( node : HTMLDivElement ) : void => {
780- if ( this . clerkjs && this . #loaded) {
781- this . clerkjs . __experimental_unmountUserVerification ( node ) ;
782- } else {
783- this . premountUserVerificationNodes . delete ( node ) ;
784- }
785- } ;
786-
787764 mountSignUp = ( node : HTMLDivElement , props : SignUpProps ) : void => {
788765 if ( this . clerkjs && this . #loaded) {
789766 this . clerkjs . mountSignUp ( node , props ) ;
0 commit comments