From 41efdb9b88eaeb5604c4f9b799faf70484f4ee9d Mon Sep 17 00:00:00 2001 From: Pierre Gee Date: Mon, 16 Oct 2023 19:04:47 +0800 Subject: [PATCH] fix(ui-ux): choose address by domain (#4065) fix(uiux): choose address by domain --- .../screens/Portfolio/screens/SendConfirmationScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/SendConfirmationScreen.tsx b/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/SendConfirmationScreen.tsx index 2c5488cd6f..d9fe6d722b 100644 --- a/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/SendConfirmationScreen.tsx +++ b/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/SendConfirmationScreen.tsx @@ -158,7 +158,7 @@ export function SendConfirmationScreen({ route }: Props): JSX.Element { testID="text_send_amount" iconA={tokenADisplaySymbol} iconB={tokenBDisplaySymbol} - fromAddress={address} + fromAddress={domain === DomainType.DVM ? address : evmAddress} fromAddressLabel={addressLabel} toAddress={destination} toAddressLabel={toAddressLabel}