We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c616c99 commit 0b8e7e2Copy full SHA for 0b8e7e2
packages/frontend/src/features/event/pages/EventPage.tsx
@@ -43,7 +43,11 @@ export default function EventPage() {
43
"/event/:eventId",
44
"/event/:eventId/attendance",
45
"/event/:eventId/checkin",
46
- ].concat(auth?.isAdmin ? ["/event/:eventId/admin-checkin"] : [])
+ ].concat(
47
+ auth?.isAdmin
48
+ ? ["/event/:eventId/admin-attendance", "/event/:eventId/admin-checkin"]
49
+ : []
50
+ )
51
);
52
53
const currentTab = routeMatchFound?.match.pattern.path;
0 commit comments