Skip to content

Commit 5b99477

Browse files
K-Mistelecmatheson
authored andcommitted
fix(formatting): run prettier
1 parent 8b70393 commit 5b99477

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/provider.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)