Skip to content

Commit

Permalink
chore: 페이지명 컨벤션 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed Aug 14, 2024
1 parent 409894a commit eac0334
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions apps/client/app/(afterLogin)/my-study/my-homework/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const MyHomework = () => {
const MyHomeworkPage = () => {
return <div>MyHomework</div>;
};

export default MyHomework;
export default MyHomeworkPage;
4 changes: 2 additions & 2 deletions apps/client/app/(afterLogin)/my-study/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const MyStudy = () => {
const MyStudyPage = () => {
return <div>MyStudy</div>;
};

export default MyStudy;
export default MyStudyPage;
4 changes: 2 additions & 2 deletions apps/client/app/(afterLogin)/study-apply/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const StudyApply = () => {
const StudyApplyPage = () => {
return <div>StudyApply</div>;
};

export default StudyApply;
export default StudyApplyPage;
4 changes: 2 additions & 2 deletions apps/client/app/(beforeLogin)/social-login/redirect/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand All @@ -15,4 +15,4 @@ const AuthServerRedirectPage = async () => {
}
};

export default AuthServerRedirectPage;
export default SocialLoginRedirectPage;

0 comments on commit eac0334

Please sign in to comment.