diff options
| author | Dax Raad <[email protected]> | 2025-09-27 01:12:25 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-09-27 01:12:25 -0400 |
| commit | 0b6b9062d93be205af7e4ad3b616162d5752c7d3 (patch) | |
| tree | 7441756bcac1668324977df5a4610202bb3dfe3f | |
| parent | c450549d0fb6c317816c8cc5cead121838122ce3 (diff) | |
| download | opencode-0b6b9062d93be205af7e4ad3b616162d5752c7d3.tar.gz opencode-0b6b9062d93be205af7e4ad3b616162d5752c7d3.zip | |
fix zen cookie
| -rw-r--r-- | packages/console/app/src/context/auth.session.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/console/app/src/context/auth.session.ts b/packages/console/app/src/context/auth.session.ts index 609bc364b..a8e2c4af3 100644 --- a/packages/console/app/src/context/auth.session.ts +++ b/packages/console/app/src/context/auth.session.ts @@ -15,6 +15,7 @@ export function useAuthSession() { return useSession<AuthSession>({ password: "0".repeat(32), name: "auth", + maxAge: 60 * 60 * 24 * 365, cookie: { secure: false, httpOnly: true, |
