Skip to content

Commit d658585

Browse files
Fix signing out #44
1 parent 35f3dc4 commit d658585

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/sign_out/+page.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const load: PageServerLoad = async () => {
88

99
export const actions: Actions = {
1010
default: async ({ cookies }) => {
11-
Auth.signOut(cookies)
11+
await Auth.signOut(cookies)
1212
throw redirect(302, '/')
1313
},
1414
}

0 commit comments

Comments
 (0)