From 5121fded672edb5e42e817617a9f316313b1b665 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Wed, 24 Jun 2020 19:34:39 -0300 Subject: [PATCH] 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'. --- ui/app/pages/mobile-sync/mobile-sync.container.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/pages/mobile-sync/mobile-sync.container.js b/ui/app/pages/mobile-sync/mobile-sync.container.js index da83ba013..28c306b1b 100644 --- a/ui/app/pages/mobile-sync/mobile-sync.container.js +++ b/ui/app/pages/mobile-sync/mobile-sync.container.js @@ -19,7 +19,7 @@ const mapStateToProps = (state) => { } = state return { - mostRecentOverviewpage: getMostRecentOverviewPage(state), + mostRecentOverviewPage: getMostRecentOverviewPage(state), selectedAddress, } }