diff --git a/app/(full-page)/auth/google/page.tsx b/app/(full-page)/auth/google/page.tsx index 7dc979d..297f27f 100644 --- a/app/(full-page)/auth/google/page.tsx +++ b/app/(full-page)/auth/google/page.tsx @@ -68,7 +68,8 @@ const GoogleAuthPage = () => { maxAge: 60, //60 secs path: '/' }); - GoogleSigninService.signIn(state, result.codeChallenge); + GoogleSigninService.signIn(state, result.codeChallenge); + console.log(result); }); } const containerClassName = classNames('surface-ground flex align-items-center justify-content-center min-h-screen min-w-screen overflow-hidden', { 'p-input-filled': layoutConfig.inputStyle === 'filled' });