diff options
author | Daijiro Wachi <daijiro.wachi@gmail.com> | 2017-10-31 03:04:44 +0800 |
---|---|---|
committer | Daijiro Wachi <daijiro.wachi@gmail.com> | 2017-10-31 03:04:44 +0800 |
commit | 0bfa10e501f47197996002447a216f278d7e6eb5 (patch) | |
tree | bf86e3af803bb256bcefeb82e9b6ccefd8c93f7a /ui | |
parent | e0030a8bf84c01184eaf251f6ef6a4b61bac2a01 (diff) | |
download | tangerine-wallet-browser-0bfa10e501f47197996002447a216f278d7e6eb5.tar tangerine-wallet-browser-0bfa10e501f47197996002447a216f278d7e6eb5.tar.gz tangerine-wallet-browser-0bfa10e501f47197996002447a216f278d7e6eb5.tar.bz2 tangerine-wallet-browser-0bfa10e501f47197996002447a216f278d7e6eb5.tar.lz tangerine-wallet-browser-0bfa10e501f47197996002447a216f278d7e6eb5.tar.xz tangerine-wallet-browser-0bfa10e501f47197996002447a216f278d7e6eb5.tar.zst tangerine-wallet-browser-0bfa10e501f47197996002447a216f278d7e6eb5.zip |
Remove warning message when show import page
Fixes: https://github.com/MetaMask/metamask-extension/issues/1192
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/accounts/import/index.js | 1 | ||||
-rw-r--r-- | ui/app/reducers/app.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ui/app/accounts/import/index.js b/ui/app/accounts/import/index.js index 97b387229..46260c3e7 100644 --- a/ui/app/accounts/import/index.js +++ b/ui/app/accounts/import/index.js @@ -72,6 +72,7 @@ AccountImportSubview.prototype.render = function () { } }), onChange: (opt) => { + props.dispatch(actions.showImportPage()) this.setState({ type: opt.value }) }, }), diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index 6f08c6dc4..8558d6dca 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -122,6 +122,7 @@ function reduceApp (state, action) { name: 'import-menu', }, transForward: true, + warning: null, }) case actions.SHOW_INFO_PAGE: |