From ad31b445f07e86cf44eccf48603fa274a07edb59 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 17 Sep 2018 11:20:38 +0200 Subject: [PATCH] Removed background from navigation body --- .../components/LeftNavigation/components/AccountMenu/index.js | 3 +-- src/views/Wallet/components/LeftNavigation/index.js | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/views/Wallet/components/LeftNavigation/components/AccountMenu/index.js b/src/views/Wallet/components/LeftNavigation/components/AccountMenu/index.js index 3b597266..a11cb848 100644 --- a/src/views/Wallet/components/LeftNavigation/components/AccountMenu/index.js +++ b/src/views/Wallet/components/LeftNavigation/components/AccountMenu/index.js @@ -20,7 +20,6 @@ import type { Props } from '../common'; import Row from '../Row'; import RowCoin from '../RowCoin'; - const Wrapper = styled.div``; const Text = styled.span` @@ -115,7 +114,7 @@ const AccountMenu = (props: Props): ?React$Element => { const selectedCoin = config.coins.find(c => c.network === location.state.network); if (!selected || !selectedCoin) return; - + const fiatRate = props.fiat.find(f => f.network === selectedCoin.network); const deviceAccounts: Accounts = findDeviceAccounts(accounts, selected, location.state.network); diff --git a/src/views/Wallet/components/LeftNavigation/index.js b/src/views/Wallet/components/LeftNavigation/index.js index dda6669d..507d2c0e 100644 --- a/src/views/Wallet/components/LeftNavigation/index.js +++ b/src/views/Wallet/components/LeftNavigation/index.js @@ -33,7 +33,6 @@ const Footer = styled.div` const Body = styled.div` width: 320px; - background: ${colors.LANDING}; `; const Help = styled.div`