1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Fix mobile sync redirect (#8860)

The mobile sync redirect was failing due to a typo in a prop. It would
fail to redirect correctly in the event of a timeout, or after pressing
'Cancel'.
This commit is contained in:
Mark Stacey 2020-06-24 19:34:39 -03:00 committed by GitHub
parent 85c81a5cfe
commit 5121fded67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ const mapStateToProps = (state) => {
} = state
return {
mostRecentOverviewpage: getMostRecentOverviewPage(state),
mostRecentOverviewPage: getMostRecentOverviewPage(state),
selectedAddress,
}
}