Skip to content

Commit

Permalink
update groups reg to be under event url (#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoalzate committed Aug 2, 2024
1 parent 47ea73e commit 48d71ce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/berlin/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand All @@ -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),
Expand Down

0 comments on commit 48d71ce

Please sign in to comment.