From 5e27c971ff04a00a5a9cdf14f9d57e9ef7dbfdc4 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 14 May 2023 19:12:58 +0330 Subject: [PATCH] minor fix --- pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.tsx b/pages/index.tsx index d82e286..bbfb791 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -10,6 +10,6 @@ export default function Home() { const router = useRouter(); useEffect(() => { - router.push("/MainLayout"); + router.push("/dashboard"); }, []); }