fix: remove unnecessary trailing comma in secure cookie setting

This commit is contained in:
Sean Morley
2026-04-24 22:16:54 -04:00
parent ca9159eda1
commit a319fb149a
3 changed files with 2335 additions and 2335 deletions

View File

File diff suppressed because it is too large Load Diff

View File

File diff suppressed because it is too large Load Diff

View File

@@ -30,7 +30,7 @@ export const actions: Actions = {
path: '/',
maxAge: 60 * 60 * 24 * 365, // 1 year
sameSite: 'lax',
secure: url.protocol === 'https:',
secure: url.protocol === 'https:'
});
}
},