Skip to content

Commit d41046e

Browse files
authored
Merge pull request #418 from kakao-tech-campus-3rd-step3/fix/add-member-management-routing#416
[FIX] 동아리원 κ΄€λ¦¬νŽ˜μ΄μ§€ λΌμš°νŒ… μΆ”κ°€μ—μ„œ λ°˜μ˜λ˜μ§€ μ•Šμ€ μˆ˜μ •μ‚¬ν•­ (#416)
2 parents f147a07 + eff8efa commit d41046e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

β€Žsrc/app/constants/navigation.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ export const getNavItems = (role: Role): NavItemData[] => {
1414
return [
1515
...commonItems,
1616
{ key: 'applicants', label: 'μ§€μ›μž 관리', to: '/admin/clubs/:clubId/dashboard' },
17-
{ key: 'clubEdit', label: 'λ™μ•„λ¦¬νŽ˜μ΄μ§€ 관리', to: '/admin/clubs/:clubId/edit' },
1817
{ key: 'form', label: '지원폼 관리', to: '/admin/clubs/:clubId/application/form/create' },
18+
{ key: 'clubEdit', label: 'λ™μ•„λ¦¬νŽ˜μ΄μ§€ 관리', to: '/admin/clubs/:clubId/edit' },
1919
{ key: 'members', label: '동아리원 관리', to: '/admin/clubs/:clubId/members' },
2020
{ key: 'logout', label: 'λ‘œκ·Έμ•„μ›ƒ', to: '#' },
2121
];

β€Žsrc/app/constants/routerPath.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const ROUTE_PATH = {
88
APPLICATION_DETAIL: 'clubs/:clubId/applicants/:applicantId',
99
CLUB_EDIT: 'clubs/:clubId/edit',
1010
APPLICATION_FORM_BUILDER: 'clubs/:clubId/application/form/create',
11-
MEMBER_MANAGEMENT: '/admin/clubs/:clubId/members',
11+
MEMBER_MANAGEMENT: '/clubs/:clubId/members',
1212
},
1313

1414
COMMON: {

0 commit comments

Comments
Β (0)