Skip to content

Commit

Permalink
Add in routing for event details page (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanyychen authored Oct 30, 2024
1 parent f923210 commit 1c54cad
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
<Route path="/profile/:id" let:params>
<Profile id={params.id}/>
</Route>
<Route path="/events/:id" let:params>
<EventDetail id={params.id}/>
</Route>
{#if $adminStatus === true}
<Route path="/inductees" component={Inductees} />
<Route path="/outreach" component={Outreach} />
Expand Down

0 comments on commit 1c54cad

Please sign in to comment.