From 4d15b2b6fc8f0d178c7c749aa9e1d9826bb706f8 Mon Sep 17 00:00:00 2001 From: "web@ppanel" Date: Mon, 29 Dec 2025 06:15:39 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20fix:=20Uncomment=20navigation=20to?= =?UTF-8?q?=20dashboard=20for=20authenticated=20users?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/admin/src/sections/auth/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/admin/src/sections/auth/index.tsx b/apps/admin/src/sections/auth/index.tsx index 6326865..bd47dc9 100644 --- a/apps/admin/src/sections/auth/index.tsx +++ b/apps/admin/src/sections/auth/index.tsx @@ -15,7 +15,7 @@ export default function Auth() { const navigate = useNavigate(); useEffect(() => { if (user) { - // navigate({ to: "/dashboard" }); + navigate({ to: "/dashboard" }); } }, [navigate, user]);