We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aea9dc commit d5cdac0Copy full SHA for d5cdac0
frontend/src/components/SignupPage.js
@@ -78,6 +78,7 @@ function SignupPage() {
78
const res = await axios
79
.post(URL_USER_SVC, { username, email, password })
80
.catch((err) => {
81
+ console.log(err);
82
if (err.response.status === STATUS_CODE_BAD_REQUEST) {
83
if (err.response.message === "Email is in the wrong format!") {
84
setErrorDialog(err.response.message);
0 commit comments