diff --git a/src/components/auth/actions.js b/src/components/auth/actions.js index f0c3c70..c0ccd9a 100644 --- a/src/components/auth/actions.js +++ b/src/components/auth/actions.js @@ -116,6 +116,13 @@ export function resendActivation({email = ''}) { '/api/signup/repeat-message', {email} ) + .then((resp) => { + dispatch(updateUser({ + email + })); + + return resp; + }) .catch(validationErrorsHandler(dispatch)) ); }