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

added React.Fragment to Receive page

This commit is contained in:
Szymon Lesisz 2018-10-08 13:55:59 +02:00
parent f32c2d351d
commit 33ba41e865

View File

@ -159,6 +159,7 @@ const AccountReceive = (props: Props) => {
return (
<Content>
<React.Fragment>
<H2>Receive Ethereum or tokens</H2>
<AddressWrapper
isShowingQrCode={addressVerified || addressUnverified}
@ -226,6 +227,7 @@ const AccountReceive = (props: Props) => {
</ShowAddressButton>
)}
</AddressWrapper>
</React.Fragment>
</Content>
);
};