mirror of
https://github.com/trezor/trezor-wallet
synced 2024-12-29 02:18:06 +00:00
Fix confirm on device
This commit is contained in:
parent
c6a04f2648
commit
6a9371fa2b
@ -121,7 +121,15 @@ const AccountReceive = (props: Props) => {
|
||||
type="text"
|
||||
value={address}
|
||||
isPartiallyHidden={isAddressHidden}
|
||||
trezorAction={isAddressVerifying ? <TrezorConfirm /> : null}
|
||||
trezorAction={isAddressVerifying ? (
|
||||
<React.Fragment>
|
||||
<Icon
|
||||
icon={ICONS.T1}
|
||||
color={colors.WHITE}
|
||||
/>
|
||||
Check address on your Trezor
|
||||
</React.Fragment>
|
||||
) : null}
|
||||
icon={((addressVerified || addressUnverified) && !isAddressVerifying) && (
|
||||
<Tooltip
|
||||
placement="left"
|
||||
|
@ -58,10 +58,6 @@ const StyledIcon = styled(Icon)`
|
||||
left: 0;
|
||||
`;
|
||||
|
||||
const ActionWrapper = styled.div`
|
||||
white-space: nowrap
|
||||
`;
|
||||
|
||||
type State = {
|
||||
signMessage: string,
|
||||
verifyAddress: string,
|
||||
|
Loading…
Reference in New Issue
Block a user