Skip to content

Commit 5b30075

Browse files
committed
fix(test): small const/let fix
1 parent 22f65a2 commit 5b30075

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/auth.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('auth', { concurrent: false, sequential: true }, () => {
3939
describe('useSupabaseUser', () => {
4040
it('does not return data when signed out', async () => {
4141
await supabase.auth.signOut()
42-
let { data, error } = await useSupabaseUser()
42+
const { data, error } = await useSupabaseUser()
4343
expect(data).toBeUndefined()
4444
expect(error).toBeNull()
4545
})

0 commit comments

Comments
 (0)