From 67b3efad4c1e97fb54d5ac6bcc1d09b6be625e94 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 30 Oct 2025 13:50:05 +0100 Subject: [PATCH] Fix --- web/pages/_app.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/web/pages/_app.tsx b/web/pages/_app.tsx index bc1f4be4..68a8e9cc 100644 --- a/web/pages/_app.tsx +++ b/web/pages/_app.tsx @@ -66,9 +66,8 @@ function MyApp({Component, pageProps}: AppProps) { useEffect(() => { async function oauthRedirect(event: any) { - console.log('Received oauthRedirect event'); - console.log('Received oauthRedirect event:', event.detail); - const detail = typeof event.detail === 'string' ? JSON.parse(event.detail) : event.detail + console.log('Received oauthRedirect event:', event); + const detail = event console.log('OAuth data:', detail); const url = new URL(detail);