Skip to content

Commit

Permalink
fix(ui-ux): display evm address as from on convert (#4099)
Browse files Browse the repository at this point in the history
  • Loading branch information
lykalabrada authored Oct 23, 2023
1 parent 6a2f449 commit ec89ee9
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,11 @@ export function ConvertConfirmationScreen({ route }: Props): JSX.Element {
? "DFI (EVM)"
: targetToken.displaySymbol
}
fromAddress={address}
fromAddress={
convertDirection === ConvertDirection.evmToDvm
? evmAddress
: address
}
fromAddressLabel={addressLabel}
isEvmToken={convertDirection === ConvertDirection.dvmToEvm}
/>
Expand Down

0 comments on commit ec89ee9

Please sign in to comment.