You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In part 4 of the tutorial, the field validation doesn't fire up when we hit send with empty username and password fields.
In the tutorial code, there is a typo in SignupActions.js on line 23.
It says if (error.resposne) {
instead of if (error.response) {
Because of this CREATE_USER_ERROR is never set and later on in the tutorial, when connecting to the api, sending the form with empty fields results in a 400 Bad Request response.
The text was updated successfully, but these errors were encountered:
In part 4 of the tutorial, the field validation doesn't fire up when we hit send with empty username and password fields.
In the tutorial code, there is a typo in SignupActions.js on line 23.
It says
if (error.resposne) {
instead of
if (error.response) {
Because of this CREATE_USER_ERROR is never set and later on in the tutorial, when connecting to the api, sending the form with empty fields results in a 400 Bad Request response.
The text was updated successfully, but these errors were encountered: