For anyone stuck on Advanced Redux - Clientside Auth Section 7, Lecture 94 at 10 minutes, here's a fix that will let you move on.
Issue: There's no way to move forwards from this part of the Client Side Auth lecture as latest updates to reduxForm mean signinUser (and other variables) doesn't get passed to props. You'll probably also notice before then that email and password can't be console.logged from your handleFormSubmit function either.
Hitting the Sign Up button will throw Uncaught TypeError: this.props.signinUser is not a function(…)
Fix: A quick fix, though not ideal, is to open package.json and change the redux-form dependency to version 5.3.3. This will let you continue.
"redux-form": "5.3.3",
http://stackoverflow.com/questions/41138158/uncaught-typeerror-this-props-signinuser-is-not-a-function
@StephenGrider fyi
For anyone stuck on Advanced Redux - Clientside Auth Section 7, Lecture 94 at 10 minutes, here's a fix that will let you move on.
Issue: There's no way to move forwards from this part of the Client Side Auth lecture as latest updates to reduxForm mean signinUser (and other variables) doesn't get passed to props. You'll probably also notice before then that email and password can't be console.logged from your handleFormSubmit function either.
Hitting the Sign Up button will throw Uncaught TypeError: this.props.signinUser is not a function(…)
Fix: A quick fix, though not ideal, is to open package.json and change the redux-form dependency to version 5.3.3. This will let you continue.
"redux-form": "5.3.3",http://stackoverflow.com/questions/41138158/uncaught-typeerror-this-props-signinuser-is-not-a-function
@StephenGrider fyi