Skip to content

Commit

Permalink
fix(routes): 멤버 페이지 RouteGuard 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Hain-tain committed Oct 31, 2024
1 parent c28b9f0 commit 0a87fff
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions frontend/src/routes/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,9 @@ const router = createBrowserRouter([
{
path: ROUTE_END_POINT.MEMBERS_TEMPLATES,
element: (
<RouteGuard isLoginRequired redirectTo={ROUTE_END_POINT.LOGIN}>
<ErrorBoundary fallback={<NotFoundPage />}>
<MyTemplatePage />
</ErrorBoundary>
</RouteGuard>
<ErrorBoundary fallback={<NotFoundPage />}>
<MyTemplatePage />
</ErrorBoundary>
),
},
{
Expand Down

0 comments on commit 0a87fff

Please sign in to comment.