Skip to content

Commit

Permalink
Merge pull request #127 from PoolC/pre-release
Browse files Browse the repository at this point in the history
회원가입 성공 시 응답코드 변경사항 반영
  • Loading branch information
mingd1023 authored Sep 19, 2021
2 parents 7a5fa89 + 4e31025 commit dfa5e78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const RegisterFormContainer = ({ location, history }) => {
});
response
.then((res) => {
if (res.status === SUCCESS.ACCEPTED) {
if (res.status === SUCCESS.OK) {
setMessage(null);
history.push('/register/success');
}
Expand Down

0 comments on commit dfa5e78

Please sign in to comment.