From 3de1ce467f7ff76f94c90878babb19f239bc9543 Mon Sep 17 00:00:00 2001 From: Jay V Date: Thu, 28 Aug 2025 14:18:37 -0400 Subject: [PATCH] ignore: cloud --- cloud/app/src/context/auth.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cloud/app/src/context/auth.tsx b/cloud/app/src/context/auth.tsx index 90db24d2..afcd3fea 100644 --- a/cloud/app/src/context/auth.tsx +++ b/cloud/app/src/context/auth.tsx @@ -21,11 +21,8 @@ export const getActor = query(async (): Promise => { const url = new URL(evt!.request.headers.get("referer") ?? evt!.request.url) const auth = await useAuthSession() const [workspaceHint] = url.pathname.split("/").filter((x) => x.length > 0) - console.log("here1") if (!workspaceHint) { - console.log("here2") if (auth.data.current) { - console.log("here3") const current = auth.data.account[auth.data.current] return { type: "account", @@ -102,6 +99,10 @@ export function useAuthSession() { return useSession({ password: "0".repeat(32), name: "auth", + cookie: { + secure: false, + httpOnly: true, + }, }) }