From eac0334210f20ee0bfdeebfdc81cb0c363bb8fe1 Mon Sep 17 00:00:00 2001 From: ghdtjgus76 Date: Wed, 14 Aug 2024 14:32:11 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=ED=8E=98=EC=9D=B4=EC=A7=80=EB=AA=85?= =?UTF-8?q?=20=EC=BB=A8=EB=B2=A4=EC=85=98=20=ED=86=B5=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/client/app/(afterLogin)/my-study/my-homework/page.tsx | 4 ++-- apps/client/app/(afterLogin)/my-study/page.tsx | 4 ++-- apps/client/app/(afterLogin)/study-apply/page.tsx | 4 ++-- apps/client/app/(beforeLogin)/social-login/redirect/page.tsx | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/client/app/(afterLogin)/my-study/my-homework/page.tsx b/apps/client/app/(afterLogin)/my-study/my-homework/page.tsx index 8d35dff8..59c4eafe 100644 --- a/apps/client/app/(afterLogin)/my-study/my-homework/page.tsx +++ b/apps/client/app/(afterLogin)/my-study/my-homework/page.tsx @@ -1,5 +1,5 @@ -const MyHomework = () => { +const MyHomeworkPage = () => { return
MyHomework
; }; -export default MyHomework; +export default MyHomeworkPage; diff --git a/apps/client/app/(afterLogin)/my-study/page.tsx b/apps/client/app/(afterLogin)/my-study/page.tsx index e0b2fdce..dc7c09cd 100644 --- a/apps/client/app/(afterLogin)/my-study/page.tsx +++ b/apps/client/app/(afterLogin)/my-study/page.tsx @@ -1,5 +1,5 @@ -const MyStudy = () => { +const MyStudyPage = () => { return
MyStudy
; }; -export default MyStudy; +export default MyStudyPage; diff --git a/apps/client/app/(afterLogin)/study-apply/page.tsx b/apps/client/app/(afterLogin)/study-apply/page.tsx index dcc0f33a..0b245437 100644 --- a/apps/client/app/(afterLogin)/study-apply/page.tsx +++ b/apps/client/app/(afterLogin)/study-apply/page.tsx @@ -1,5 +1,5 @@ -const StudyApply = () => { +const StudyApplyPage = () => { return
StudyApply
; }; -export default StudyApply; +export default StudyApplyPage; diff --git a/apps/client/app/(beforeLogin)/social-login/redirect/page.tsx b/apps/client/app/(beforeLogin)/social-login/redirect/page.tsx index dad71690..3cf577ce 100644 --- a/apps/client/app/(beforeLogin)/social-login/redirect/page.tsx +++ b/apps/client/app/(beforeLogin)/social-login/redirect/page.tsx @@ -2,7 +2,7 @@ import { dashboardApi } from "apis/dashboardApi"; import { routePath } from "constants/routePath"; import { redirect } from "next/navigation"; -const AuthServerRedirectPage = async () => { +const SocialLoginRedirectPage = async () => { const { memberRole, currentRecruitmentOpen } = await dashboardApi.getDashboardInfo(); @@ -15,4 +15,4 @@ const AuthServerRedirectPage = async () => { } }; -export default AuthServerRedirectPage; +export default SocialLoginRedirectPage;