Skip to content

Commit

Permalink
Update dependencies and secure cookie options
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Miller committed Nov 7, 2023
1 parent 8d1451a commit 74d7684
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@ducanh2912/next-pwa": "^9.7.2",
"@supabase/auth-helpers-nextjs": "^0.8.4",
"@supabase/auth-helpers-nextjs": "^0.7.4",
"@supabase/auth-helpers-react": "^0.4.2",
"@t4/ui": "*",
"@tamagui/next-theme": "1.75.9",
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/app/utils/supabase/cookies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export function getCookieValue(cookieName: string): string | undefined {
export const AUTH_TOKEN_COOKIE_NAME = 'auth-token'

export const secureCookieOptions = {
name: AUTH_TOKEN_COOKIE_NAME,
...DEFAULT_COOKIE_OPTIONS,
name: AUTH_TOKEN_COOKIE_NAME,
sameSite: 'Strict',
secure: true,
// domain: 'localhost',
Expand Down

1 comment on commit 74d7684

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✔ EAS production build completed

Android QR IOS QR
Android QR IOS QR

Please sign in to comment.