From 64c622766c33cfe76d798563d5ae1d9427010197 Mon Sep 17 00:00:00 2001 From: EthanAuyeung Date: Fri, 6 Oct 2023 15:52:25 -0700 Subject: [PATCH] Fixed routing and login error --- src/app/login/page.tsx | 2 +- src/app/{profile => profileScreen}/page.tsx | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/app/{profile => profileScreen}/page.tsx (100%) diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 552e2aad..ca19b89e 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -1,6 +1,6 @@ 'use client'; -import LoginForm from '../../../components/LoginForm'; +import LoginForm from '../../components/LoginForm'; import { GlobalStyle, diff --git a/src/app/profile /page.tsx b/src/app/profileScreen/page.tsx similarity index 100% rename from src/app/profile /page.tsx rename to src/app/profileScreen/page.tsx