Skip to content

Commit 359f372

Browse files
refactor(site): remove unused async decoration
Co-authored-by: geuna0204 <146903729+geuna0204@users.noreply.github.com>
1 parent b9a8746 commit 359f372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/contexts/auth/AuthProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const AuthProvider: FC<PropsWithChildren> = ({ children }) => {
8383
const isSigningIn = loginMutation.isLoading;
8484
const isUpdatingProfile = updateProfileMutation.isLoading;
8585

86-
const signOut = useCallback(async () => {
86+
const signOut = useCallback(() => {
8787
logoutMutation.mutate();
8888
}, [logoutMutation]);
8989

0 commit comments

Comments
 (0)