Skip to content

Instantly share code, notes, and snippets.

@lancetw
Created June 8, 2017 06:02
Show Gist options
  • Save lancetw/5ca3ae3c3f76b1a0fcfcbdca1142e256 to your computer and use it in GitHub Desktop.
Save lancetw/5ca3ae3c3f76b1a0fcfcbdca1142e256 to your computer and use it in GitHub Desktop.
export const submit = (values, dispatch /*, props */) => {
setSubmitting('loginForm', true)
return login(values)
.then(action => {
dispatch(action)
setSubmitting('loginForm', false)
})
.catch(error => {
dispatch(error)
throw new SubmissionError(error.payload)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment