Add email status (#1058)

This commit is contained in:
Joel Elias Méndez 2021-10-15 15:43:55 -03:00 committed by GitHub
parent 8c17d22ab3
commit b2e43430b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -164,7 +164,8 @@ class MainHomePageLoginWidget extends React.Component {
onLoginFormSubmit(formState) {
this.setState({
reSendEmailVerificationStep: UNVERIFIED_USER_STEP
reSendEmailVerificationStep: UNVERIFIED_USER_STEP,
email: formState.email
})
this.props.dispatch(SessionActions.login(formState));
}