Skip to content

Commit

Permalink
Fix: #38 로그인 리다이렉션 url에 path가 붙기 때문에 exact 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
eve712 committed Jun 15, 2021
1 parent 87bddec commit 7c28f22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FE/issue-tracker/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ function App() {
<Background>
<BrowserRouter>
<Switch>
<Route path="/" exact>
<Login />
</Route>
<Route path="/issues">
<Issues />
</Route>
Expand All @@ -36,6 +33,9 @@ function App() {
<Route path="/milestones">
<Milestones />
</Route>
<Route path="/">
<Login />
</Route>
</Switch>
</BrowserRouter>
</Background>
Expand Down

0 comments on commit 7c28f22

Please sign in to comment.