We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1282e46 commit 67b3efaCopy full SHA for 67b3efa
web/pages/_app.tsx
@@ -66,9 +66,8 @@ function MyApp({Component, pageProps}: AppProps<PageProps>) {
66
67
useEffect(() => {
68
async function oauthRedirect(event: any) {
69
- console.log('Received oauthRedirect event');
70
- console.log('Received oauthRedirect event:', event.detail);
71
- const detail = typeof event.detail === 'string' ? JSON.parse(event.detail) : event.detail
+ console.log('Received oauthRedirect event:', event);
+ const detail = event
72
console.log('OAuth data:', detail);
73
const url = new URL(detail);
74
0 commit comments