Skip to content

Commit

Permalink
fix(router): fix route order
Browse files Browse the repository at this point in the history
  • Loading branch information
angristan committed May 29, 2021
1 parent 78d9725 commit 8925e8d
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 @@ -29,8 +29,8 @@ function App() {
></PrivateRoute>
{/*<PrivateRoute path="/benchmarks" component={Benchmarks}></PrivateRoute>*/}
<Route path="/benchmarks/create" component={CreateBenchmark} />
<Route path="/benchmarks" component={Benchmarks} />
<Route path="/benchmarks/:id" component={BenchmarkDetail} />
<Route path="/benchmarks" component={Benchmarks} />
<Route>
<Login setToken={setToken} />
</Route>
Expand Down

0 comments on commit 8925e8d

Please sign in to comment.