Skip to content

Commit

Permalink
fix: 회원가입 리다이렉트 상태코드 404로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
wukdddang committed Nov 9, 2023
1 parent 4998904 commit 8e204a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/loginPending/LoginPending.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const LoginPending = () => {
})
})
.catch((err) => {
if (err.response.status === 400) {
if (err.response.status === 404) {
navigate('/register/user')
}
})
Expand Down

0 comments on commit 8e204a3

Please sign in to comment.