Skip to content

Commit

Permalink
feat: 비정상적인 경로로 접근 시, 에러 페이지 띄우기
Browse files Browse the repository at this point in the history
  • Loading branch information
Arooming committed Jan 18, 2024
1 parent 07a7b96 commit b5529df
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ function Router() {
<Route path="/loading" element={<LoginCallback />} />
<Route path="/error" element={<ErrorPage />} />
<Route path="/loading-page" element={<LoadingPage />} />
<Route path="/*" element={<ErrorPage />} />
</Routes>
</BrowserRouter>
);
Expand Down

0 comments on commit b5529df

Please sign in to comment.