We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e3d607 commit 16b2a16Copy full SHA for 16b2a16
src/hooks/useLoginLogout.ts
@@ -5,11 +5,11 @@ import { useDisconnect } from 'wagmi';
5
export function useLoginLogout() {
6
const { open } = useAppKit();
7
const { disconnectAsync } = useDisconnect();
8
- const { signOut, isSignedIn } = useAuth()
+ const { signOut, isSignedIn } = useAuth();
9
10
const logout = async () => {
11
if (isSignedIn) {
12
- signOut()
+ signOut();
13
}
14
try {
15
await disconnectAsync();
0 commit comments