Skip to content

Commit

Permalink
[#54] signup 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Dormarble committed Apr 29, 2021
1 parent 8cc36d8 commit 2daf876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/login/SignUp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default function SignUpDialog({onClose, open}) {
if(response.status === StatusCodes.CREATED) {
setResult({send: true, error: ''});
} else {
setResult({send: false, error: e.message});
setResult({send: false, error: response.data.message});
}
setIsLoading(false);
}
Expand Down

0 comments on commit 2daf876

Please sign in to comment.