aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-10-26 04:24:03 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-10-26 04:24:03 +0800
commit678301a20e6112d79a052c13f921bb75c451c613 (patch)
tree735a7e4cd5dc92aa3f574144660231728d9c74f2 /ui/app/app.js
parent16e2f029d8b76e6f1e951d35307d955c2346cd8d (diff)
downloadtangerine-wallet-browser-678301a20e6112d79a052c13f921bb75c451c613.tar.gz
tangerine-wallet-browser-678301a20e6112d79a052c13f921bb75c451c613.tar.zst
tangerine-wallet-browser-678301a20e6112d79a052c13f921bb75c451c613.zip
Phase out extra warning screen.
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index a1004b74b..061545d59 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -25,7 +25,6 @@ const MenuDroppo = require('menu-droppo')
const DropMenuItem = require('./components/drop-menu-item')
const NetworkIndicator = require('./components/network')
const Tooltip = require('./components/tooltip')
-const EthStoreWarning = require('./eth-store-warning')
const BuyView = require('./components/buy-button-subview')
const QrView = require('./components/qr-code')
module.exports = connect(mapStateToProps)(App)
@@ -38,7 +37,6 @@ function mapStateToProps (state) {
// state from plugin
isLoading: state.appState.isLoading,
isConfirmed: state.metamask.isConfirmed,
- isEthConfirmed: state.metamask.isEthConfirmed,
isInitialized: state.metamask.isInitialized,
isUnlocked: state.metamask.isUnlocked,
currentView: state.appState.currentView,
@@ -421,9 +419,6 @@ App.prototype.renderPrimary = function () {
// show current view
switch (props.currentView.name) {
- case 'EthStoreWarning':
- return h(EthStoreWarning, {key: 'ethWarning'})
-
case 'accounts':
return h(AccountsScreen, {key: 'accounts'})