diff --git a/src/views/Wallet/views/AccountReceive/index.js b/src/views/Wallet/views/AccountReceive/index.js index 9e80b195..202ceee1 100644 --- a/src/views/Wallet/views/AccountReceive/index.js +++ b/src/views/Wallet/views/AccountReceive/index.js @@ -133,10 +133,9 @@ const AccountReceive = (props: Props) => { const { account, discovery, - shouldRender, } = props.selectedAccount; - if (!device || !account || !discovery || !shouldRender) return null; + if (!device || !account || !discovery) return null; const { addressVerified, @@ -158,9 +157,6 @@ const AccountReceive = (props: Props) => { - {isAddressVerifying && ( - Confirm address on TREZOR - )} {((addressVerified || addressUnverified) && !isAddressVerifying) && ( { >{address} {isAddressVerifying && ( - {account.network} account #{account.index + 1} + + + + + Check address on your Trezor + + )} + {/* {isAddressVerifying && ( + {account.network} account #{account.index + 1} + )} */} {(addressVerified || addressUnverified) && ( { ); }; -export default AccountReceive; +export default AccountReceive; \ No newline at end of file