diff --git a/task_yell/src/app/signin/page.tsx b/task_yell/src/app/signin/page.tsx index cf58159..d990283 100644 --- a/task_yell/src/app/signin/page.tsx +++ b/task_yell/src/app/signin/page.tsx @@ -14,7 +14,7 @@ export default function SignUpPage() { const provider = new GoogleAuthProvider(); const cred = await signInWithPopup(auth, provider); if (cred.user) { - router.push("/"); + router.push("/home"); } }, [router]);