From b9ea40db20f1ec2218eff210c5ac754641c20751 Mon Sep 17 00:00:00 2001 From: Kakabay <2kakabayashyrberdyew@gmail.com> Date: Mon, 30 Dec 2024 14:05:42 +0500 Subject: [PATCH] clgs removed --- app/(main)/lottery/auth/page.tsx | 2 -- 1 file changed, 2 deletions(-) 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]);