mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-14 04:19:09 +00:00
Merge pull request #576 from trezor/fix/show-xrp-qrcode
Fix showing qr code for xrp
This commit is contained in:
commit
5f4a9863d6
@ -181,21 +181,21 @@ const AccountReceive = (props: Props) => {
|
||||
</ShowAddressButton>
|
||||
)}
|
||||
</Row>
|
||||
{((addressVerified || addressUnverified) && !isAddressVerifying) ||
|
||||
(account.imported && (
|
||||
<QrWrapper>
|
||||
<Label>
|
||||
<FormattedMessage {...l10nReceiveMessages.TR_QR_CODE} />
|
||||
</Label>
|
||||
<StyledQRCode
|
||||
bgColor="#FFFFFF"
|
||||
fgColor="#000000"
|
||||
level="Q"
|
||||
style={{ width: 150 }}
|
||||
value={account.descriptor}
|
||||
/>
|
||||
</QrWrapper>
|
||||
))}
|
||||
{(((addressVerified || addressUnverified) && !isAddressVerifying) ||
|
||||
account.imported) && (
|
||||
<QrWrapper>
|
||||
<Label>
|
||||
<FormattedMessage {...l10nReceiveMessages.TR_QR_CODE} />
|
||||
</Label>
|
||||
<StyledQRCode
|
||||
bgColor="#FFFFFF"
|
||||
fgColor="#000000"
|
||||
level="Q"
|
||||
style={{ width: 150 }}
|
||||
value={account.descriptor}
|
||||
/>
|
||||
</QrWrapper>
|
||||
)}
|
||||
</AddressWrapper>
|
||||
</React.Fragment>
|
||||
</Content>
|
||||
|
Loading…
Reference in New Issue
Block a user