Skip to content

Commit

Permalink
chore: fix app router
Browse files Browse the repository at this point in the history
  • Loading branch information
LucSPI committed May 20, 2023
1 parent 46b21b4 commit 98a11ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function App() {
<Route path="play">
<Route index element={<Lobby />} />
<Route path="offline" element={<ComingSoon />} />
<Route path=":roomId" element={<Room />} />
<Route path=":gameId" element={<Room />} />
</Route>
<Route path="pools" element={<Pools />} />
<Route path="leaderboard" element={<Leaderboard />} />
Expand Down

0 comments on commit 98a11ca

Please sign in to comment.