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]);