Skip to content

Commit

Permalink
Merge pull request #54 from Chaem03/feature/#22
Browse files Browse the repository at this point in the history
🔥 Fix: 오류페이지 리다이렉트 오류 수정
  • Loading branch information
Chaem03 authored Sep 15, 2024
2 parents e420008 + 17a8ba4 commit 03c1f73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/router.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const router = createBrowserRouter([
element: <CompletePage />,
},
{
path: "box/:boxId/choco",
path: "/box/:boxId/choco",
element: <LetterPostPage />,
},

Expand All @@ -51,6 +51,7 @@ const router = createBrowserRouter([
{ path: "/detailletter/:id", element: <DetailLetter /> },
{ path: "/chocolist", element: <ChocoList /> },
],
errorElement: <NotFound />,
},
]);

Expand Down

0 comments on commit 03c1f73

Please sign in to comment.