diff --git a/client/src/app/retreat/admin/page.tsx b/client/src/app/retreat/admin/page.tsx index d3eeb9c..a58dadb 100644 --- a/client/src/app/retreat/admin/page.tsx +++ b/client/src/app/retreat/admin/page.tsx @@ -73,7 +73,7 @@ export default function Admin() { return Object.fromEntries(sortedEntries) } - const targetCount = 400 + const targetCount = 500 const attendanceRate = ((attendeeStatus.all / targetCount) * 100).toFixed(1) const maleRate = ((attendeeStatus.man / attendeeStatus.all) * 100).toFixed(1) const femaleRate = ( diff --git a/client/src/components/Header/index.tsx b/client/src/components/Header/index.tsx index 5a8aa52..66fbeae 100644 --- a/client/src/components/Header/index.tsx +++ b/client/src/components/Header/index.tsx @@ -77,6 +77,12 @@ export default function Header() { path: "/leader/attendance", type: "menu", }) + DrawerItems.push({ + title: "순원 수련회 접수 조회", + icon: , + path: "/leader/retreat-attendance", + type: "menu", + }) if (authUserData?.role.VillageLeader) { DrawerItems.push({