1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +00:00

AccountSummary added React.Fragment

This commit is contained in:
Szymon Lesisz 2018-10-03 18:47:43 +02:00
parent 200c0ea4cf
commit 15ed36f2b5

View File

@ -78,6 +78,7 @@ const AccountSummary = (props: Props) => {
return (
<Content>
<React.Fragment>
<AccountHeading>
<AccountName>
<StyledCoinLogo coinNetwork={account.network} />
@ -156,6 +157,7 @@ const AccountSummary = (props: Props) => {
/>
))}
</AddedTokensWrapper>
</React.Fragment>
</Content>
);
};