diff --git a/app/(main)/lottery/auth/page.tsx b/app/(main)/lottery/auth/page.tsx index 9731857..b3d2cd1 100644 --- a/app/(main)/lottery/auth/page.tsx +++ b/app/(main)/lottery/auth/page.tsx @@ -10,9 +10,7 @@ const LotteryAuthPage = () => { const { isAuthenticated, logout } = useLotteryAuth(); useEffect(() => { - console.log("Auth page - Authentication state:", isAuthenticated); if (isAuthenticated) { - console.log("Auth page - Redirecting to lottery..."); router.push("/lottery"); } }, [isAuthenticated, router]);