Skip to content

Commit

Permalink
Merge pull request #81 from Chaem03/feature/#22
Browse files Browse the repository at this point in the history
Fix: redirectURL->redurectUrl로 변경
  • Loading branch information
Chaem03 authored Sep 23, 2024
2 parents a6b7ad8 + 06dc3cc commit 187283a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/otherboxPage/otherboxPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const OtherboxPage = () => {
if (!token) {
// 토큰이 없으면 로그인 페이지로 리다이렉트하고, 돌아올 페이지 정보를 함께 전달
sessionStorage.setItem(
"redirectURL",
"redirectUrl",
`https://choco-express.site/box/${boxId}/choco`
);
navigate("/");
Expand All @@ -33,7 +33,7 @@ export const OtherboxPage = () => {
if (!token) {
// 토큰이 없으면 로그인 페이지로 리다이렉트하고, 돌아올 페이지 정보를 함께 전달
sessionStorage.setItem(
"redirectURL",
"redirectUrl",
`https://choco-express.site/box/${boxId}/choco`
);
navigate("/");
Expand Down

0 comments on commit 187283a

Please sign in to comment.