From 9ea9c1dc622aae633c842d931d735944818821fa Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Fri, 14 Aug 2026 17:43:08 +0200 Subject: [PATCH] fixup! (frontend) alternative auth without relying on sameSite cookie --- src/frontend/src/features/auth/components/TransitCodeGate.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/frontend/src/features/auth/components/TransitCodeGate.tsx b/src/frontend/src/features/auth/components/TransitCodeGate.tsx index a3081af5..50d8e17c 100644 --- a/src/frontend/src/features/auth/components/TransitCodeGate.tsx +++ b/src/frontend/src/features/auth/components/TransitCodeGate.tsx @@ -46,9 +46,7 @@ const TransitCodeExchange = ({ children }: { children: React.ReactNode }) => { useEffect(() => { let isMounted = true initializeAccessTokenFromFragment().finally(() => { - console.log('$$ transit code exchange finished') if (isMounted) { - console.log('$$ setIsReady') setIsReady(true) } })