mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 20:53:24 +10:00
Merge pull request #534 from sharetribe/fix-email-verification-page-missing-prop
Add missing in progress prop to email verification page
This commit is contained in:
commit
2225079d11
1 changed files with 2 additions and 1 deletions
|
|
@ -118,9 +118,10 @@ EmailVerificationPageComponent.propTypes = {
|
|||
const mapStateToProps = state => {
|
||||
const { logoutError } = state.Auth;
|
||||
const { currentUser } = state.user;
|
||||
const { verificationError } = state.EmailVerification;
|
||||
const { verificationError, verificationInProgress } = state.EmailVerification;
|
||||
return {
|
||||
verificationError,
|
||||
emailVerificationInProgress: verificationInProgress,
|
||||
currentUser,
|
||||
logoutError,
|
||||
scrollingDisabled: isScrollingDisabled(state),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue