Skip to content

Commit

Permalink
hotfix: Define 테스트 페이지 라우팅 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
AAminha committed Jun 7, 2024
1 parent 3f7efd5 commit b59f0ca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/routers/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,13 @@ export const Router = () => {

return (
<Routes>
<Route path="/" element={<TestLayout />}>
<Route path="" element={<DefineTestPage />} />
</Route>
<Route element={<MainLayout />}>
<Route path="/login" element={<RedirectPage />} />
<Route path="/onboarding" element={<OnboardingPage />} />
<Route path="/" element={<TestLayout />}>
<Route path="" element={<DefineTestPage />} />
</Route>

<Route path="/home" element={<HomePage />} />
<Route path="/auth" element={<LoginPage />} />
<Route path="/understand" element={<SelfUnderstandPage />} />
Expand Down

0 comments on commit b59f0ca

Please sign in to comment.