diff options
author | Alexander Tseung <alextsg@gmail.com> | 2018-05-15 05:34:10 +0800 |
---|---|---|
committer | Alexander Tseung <alextsg@gmail.com> | 2018-05-15 06:03:04 +0800 |
commit | 5561937773b4e59e3df9df385693680e17e6b8c0 (patch) | |
tree | 5e048b25dea0ce93cdc6833acfff030ac9bbfcc1 /ui/app/app.js | |
parent | 6bd1b21d3b8f74c44214f814c3fe1c8770ab9e2d (diff) | |
download | tangerine-wallet-browser-5561937773b4e59e3df9df385693680e17e6b8c0.tar tangerine-wallet-browser-5561937773b4e59e3df9df385693680e17e6b8c0.tar.gz tangerine-wallet-browser-5561937773b4e59e3df9df385693680e17e6b8c0.tar.bz2 tangerine-wallet-browser-5561937773b4e59e3df9df385693680e17e6b8c0.tar.lz tangerine-wallet-browser-5561937773b4e59e3df9df385693680e17e6b8c0.tar.xz tangerine-wallet-browser-5561937773b4e59e3df9df385693680e17e6b8c0.tar.zst tangerine-wallet-browser-5561937773b4e59e3df9df385693680e17e6b8c0.zip |
Fix account and network dropdowns in confirm screen
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 5bc571c64..f840cc34e 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -1,7 +1,7 @@ const { Component } = require('react') const PropTypes = require('prop-types') const connect = require('react-redux').connect -const { Route, Switch, withRouter, matchPath } = require('react-router-dom') +const { Route, Switch, withRouter } = require('react-router-dom') const { compose } = require('recompose') const h = require('react-hyperscript') const actions = require('./actions') @@ -83,15 +83,6 @@ class App extends Component { ) } - renderAppHeader () { - const { location } = this.props - const isInitializing = matchPath(location.pathname, { - path: INITIALIZE_ROUTE, exact: false, - }) - - return isInitializing ? null : h(AppHeader) - } - render () { const { isLoading, @@ -128,7 +119,7 @@ class App extends Component { // global modal h(Modal, {}, []), - this.renderAppHeader(), + h(AppHeader), // sidebar this.renderSidebar(), |