Skip to content

Commit 16b2a16

Browse files
committed
fix: add missing semicolons for consistency in useLoginLogout hook
1 parent 2e3d607 commit 16b2a16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hooks/useLoginLogout.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import { useDisconnect } from 'wagmi';
55
export function useLoginLogout() {
66
const { open } = useAppKit();
77
const { disconnectAsync } = useDisconnect();
8-
const { signOut, isSignedIn } = useAuth()
8+
const { signOut, isSignedIn } = useAuth();
99

1010
const logout = async () => {
1111
if (isSignedIn) {
12-
signOut()
12+
signOut();
1313
}
1414
try {
1515
await disconnectAsync();

0 commit comments

Comments
 (0)