diff options
author | Thomas Huang <tmashuang@users.noreply.github.com> | 2019-03-13 00:31:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-13 00:31:19 +0800 |
commit | 7981b1bf23ccf4697262ffa1c279877209276ae4 (patch) | |
tree | 4315f077267592ed48fc7df461e785e164a68b0b | |
parent | 9d130a104aed7e18f04967e5d4521e5a22c56a20 (diff) | |
parent | 17911dddff92d7eedf570078f27510389c941de8 (diff) | |
download | tangerine-wallet-browser-7981b1bf23ccf4697262ffa1c279877209276ae4.tar tangerine-wallet-browser-7981b1bf23ccf4697262ffa1c279877209276ae4.tar.gz tangerine-wallet-browser-7981b1bf23ccf4697262ffa1c279877209276ae4.tar.bz2 tangerine-wallet-browser-7981b1bf23ccf4697262ffa1c279877209276ae4.tar.lz tangerine-wallet-browser-7981b1bf23ccf4697262ffa1c279877209276ae4.tar.xz tangerine-wallet-browser-7981b1bf23ccf4697262ffa1c279877209276ae4.tar.zst tangerine-wallet-browser-7981b1bf23ccf4697262ffa1c279877209276ae4.zip |
Merge pull request #6281 from MetaMask/fix-browser-back-on-reveal-seed
Fixes the use of the browser back button on the reveal seed screen
-rw-r--r-- | ui/app/components/pages/first-time-flow/create-password/create-password.component.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pages/first-time-flow/create-password/create-password.component.js b/ui/app/components/pages/first-time-flow/create-password/create-password.component.js index 3faaa3764..070361652 100644 --- a/ui/app/components/pages/first-time-flow/create-password/create-password.component.js +++ b/ui/app/components/pages/first-time-flow/create-password/create-password.component.js @@ -6,7 +6,7 @@ import ImportWithSeedPhrase from './import-with-seed-phrase' import { INITIALIZE_CREATE_PASSWORD_ROUTE, INITIALIZE_IMPORT_WITH_SEED_PHRASE_ROUTE, - INITIALIZE_END_OF_FLOW_ROUTE, + INITIALIZE_SEED_PHRASE_ROUTE, } from '../../../../routes' export default class CreatePassword extends PureComponent { @@ -21,7 +21,7 @@ export default class CreatePassword extends PureComponent { const { isInitialized, history } = this.props if (isInitialized) { - history.push(INITIALIZE_END_OF_FLOW_ROUTE) + history.push(INITIALIZE_SEED_PHRASE_ROUTE) } } |