Skip to content

Commit dfa5e78

Browse files
authored
Merge pull request #127 from PoolC/pre-release
회원가입 성공 시 응답코드 변경사항 반영
2 parents 7a5fa89 + 4e31025 commit dfa5e78

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/containers/auth/RegisterFormContainer/RegisterFormContainer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const RegisterFormContainer = ({ location, history }) => {
4646
});
4747
response
4848
.then((res) => {
49-
if (res.status === SUCCESS.ACCEPTED) {
49+
if (res.status === SUCCESS.OK) {
5050
setMessage(null);
5151
history.push('/register/success');
5252
}

0 commit comments

Comments
 (0)