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;