diff --git a/packages/berlin/src/App.tsx b/packages/berlin/src/App.tsx index 29a6e2da..c38cf607 100644 --- a/packages/berlin/src/App.tsx +++ b/packages/berlin/src/App.tsx @@ -231,14 +231,6 @@ const router = (queryClient: QueryClient) => path: '/account', Component: Account, }, - { - path: '/secret-groups', - Component: SecretGroupRegistration, - }, - { - path: '/public-groups', - Component: PublicGroupRegistration, - }, { path: '/events', children: [ @@ -255,6 +247,14 @@ const router = (queryClient: QueryClient) => path: ':eventId/holding', Component: Holding, }, + { + path: ':eventId/secret-groups', + Component: SecretGroupRegistration, + }, + { + path: ':eventId/public-groups', + Component: PublicGroupRegistration, + }, { loader: ({ params }) => redirectToEventHoldingOrRegister(queryClient, params.eventId),