Skip to content

Commit

Permalink
Make team and player pages unprotected
Browse files Browse the repository at this point in the history
  • Loading branch information
berat-yilmaz committed Apr 30, 2024
1 parent 9c91beb commit 02fc004
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/routes/Router.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ function Router() {
<Routes>
<Route element={<PrivateRoutes/>}>
<Route path='/' element={<Feed/>} />
<Route path="/team/:id" element={<Team />} />
<Route path="/player/:id" element={<Player />} />
</Route>
<Route path="/team/:id" element={<Team />} />
<Route path="/player/:id" element={<Player />} />
<Route path="/sign-up" element={<SignUp />} />
<Route path="/sign-up-prompt" element={<SignUpPrompt />} />
<Route path="/sign-in" element={<SignIn />} />
Expand Down

0 comments on commit 02fc004

Please sign in to comment.