From e85643b2b3bc4370ddd47282e8d92b599097a1b5 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Fri, 12 Apr 2019 15:38:18 +0200 Subject: [PATCH] fix lint again --- src/views/Wallet/components/TopNavigationAccount/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Wallet/components/TopNavigationAccount/index.js b/src/views/Wallet/components/TopNavigationAccount/index.js index 426a3781..39215a8b 100644 --- a/src/views/Wallet/components/TopNavigationAccount/index.js +++ b/src/views/Wallet/components/TopNavigationAccount/index.js @@ -97,7 +97,7 @@ class TopNavigationAccount extends React.PureComponent { const { config } = this.props.localStorage; const { state, pathname } = this.props.router.location; if (!state) return null; - const { network, account } = this.props.selectedAccount; + const { network } = this.props.selectedAccount; if (!network) return null; const networkConfig = config.networks.find(c => c.shortcut === network.shortcut); if (!networkConfig) return null;