aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index cdda44d40..e0bdac359 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -18,7 +18,7 @@ const ConfirmTransaction = require('./components/pages/confirm-transaction')
const WalletView = require('./components/wallet-view')
// other views
-const Home = require('./components/pages/home')
+import Home from './components/pages/home'
const Authenticated = require('./components/pages/authenticated')
const Initialized = require('./components/pages/initialized')
const Settings = require('./components/pages/settings')
@@ -185,7 +185,7 @@ class App extends Component {
}, [
// A second instance of Walletview is used for non-mobile viewports
this.props.sidebarOpen ? h(WalletView, {
- responsiveDisplayClassname: '.sidebar',
+ responsiveDisplayClassname: 'sidebar',
style: {},
}) : undefined,