Skip to content

Commit

Permalink
feat: fix expires
Browse files Browse the repository at this point in the history
  • Loading branch information
BibiSebi committed Jul 10, 2024
1 parent d8de8c5 commit 2603f50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const changedCookieHeaderValue = (
return [
`${name}=${value}`,
'path=/',
expires ? `Expires=${expires.toISOString()}; ` : undefined,
expires ? `Expires=${expires}; ` : undefined,
'samesite=none',
'secure',
'httponly',
Expand Down

0 comments on commit 2603f50

Please sign in to comment.