From 5df872eec10650cf709bbfae46baf8112faff376 Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Wed, 26 Sep 2018 18:02:39 +0200 Subject: [PATCH] using React.Fragment --- src/components/notifications/Context/index.js | 4 ++-- src/views/Wallet/views/AccountReceive/index.js | 2 -- src/views/Wallet/views/AccountSummary/index.js | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/components/notifications/Context/index.js b/src/components/notifications/Context/index.js index 786c6ce1..e28bba0b 100644 --- a/src/components/notifications/Context/index.js +++ b/src/components/notifications/Context/index.js @@ -32,11 +32,11 @@ export type Props = StateProps & DispatchProps; type OwnProps = {}; const Notifications = (props: Props) => ( -
+ -
+ ); const mapStateToProps: MapStateToProps = (state: State): StateProps => ({ diff --git a/src/views/Wallet/views/AccountReceive/index.js b/src/views/Wallet/views/AccountReceive/index.js index 1a28338a..d76a1cab 100644 --- a/src/views/Wallet/views/AccountReceive/index.js +++ b/src/views/Wallet/views/AccountReceive/index.js @@ -10,8 +10,6 @@ import colors from 'config/colors'; import Tooltip from 'components/Tooltip'; import { QRCode } from 'react-qr-svg'; -import SelectedAccount from 'views/Wallet/components/SelectedAccount'; - import { FONT_SIZE, FONT_WEIGHT, FONT_FAMILY } from 'config/variables'; import type { Props } from './Container'; diff --git a/src/views/Wallet/views/AccountSummary/index.js b/src/views/Wallet/views/AccountSummary/index.js index d3aa3436..6e78da1d 100644 --- a/src/views/Wallet/views/AccountSummary/index.js +++ b/src/views/Wallet/views/AccountSummary/index.js @@ -75,7 +75,7 @@ const AccountSummary = (props: Props) => { const balance: string = new BigNumber(account.balance).minus(pendingAmount).toString(10); return ( -
+ @@ -155,7 +155,7 @@ const AccountSummary = (props: Props) => { /> ))} -
+ ); };