File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export function AuthKitProvider(props: AuthKitProviderProps) {
8888 signOut : client . signOut . bind ( client ) ,
8989 switchToOrganization : client . switchToOrganization . bind ( client ) ,
9090 getSignInUrl : client . getSignInUrl . bind ( client ) ,
91- getSignUpUrl : client . getSignUpUrl . bind ( client )
91+ getSignUpUrl : client . getSignUpUrl . bind ( client ) ,
9292 } ) ;
9393 setState ( ( prev ) => ( { ...prev , isLoading : false , user } ) ) ;
9494 } ) ;
@@ -138,6 +138,6 @@ const NOOP_CLIENT: Client = {
138138 getAccessToken : ( ) => Promise . reject ( new LoginRequiredError ( ) ) ,
139139 switchToOrganization : ( ) => Promise . resolve ( ) ,
140140 signOut : async ( ) => { } ,
141- getSignInUrl : async ( ) => '' ,
142- getSignUpUrl : async ( ) => ''
141+ getSignInUrl : async ( ) => "" ,
142+ getSignUpUrl : async ( ) => "" ,
143143} ;
You can’t perform that action at this time.
0 commit comments