diff options
Diffstat (limited to 'src/routes/api/authentication')
| -rw-r--r-- | src/routes/api/authentication/log-out/+server.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/routes/api/authentication/log-out/+server.ts b/src/routes/api/authentication/log-out/+server.ts index 8623dfd1..fd5d37bf 100644 --- a/src/routes/api/authentication/log-out/+server.ts +++ b/src/routes/api/authentication/log-out/+server.ts @@ -8,7 +8,6 @@ export const GET = ({ cookies }) => { maxAge: 60 * 60 * 24 * 7, httpOnly: false, sameSite: "lax", - secure: false, }); redirect(303, root("/")); |