diff --git a/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/TokenDetailScreen.tsx b/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/TokenDetailScreen.tsx index 1b25bd3d90..e3ebf76c89 100644 --- a/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/TokenDetailScreen.tsx +++ b/mobile-app/app/screens/AppNavigator/screens/Portfolio/screens/TokenDetailScreen.tsx @@ -131,7 +131,7 @@ export function TokenDetailScreen({ route, navigation }: Props): JSX.Element { // usdAmount for crypto tokens, undefined for DFI token const { usdAmount } = route.params.token; - + const isEvmDomain = domain === DomainType.EVM; const onNavigateLiquidity = ({ destination, pair, @@ -186,21 +186,23 @@ export function TokenDetailScreen({ route, navigation }: Props): JSX.Element { token={token} border usdAmount={usdAmount ?? new BigNumber(0)} - isEvmDomain={domain === DomainType.EVM} + isEvmDomain={isEvmDomain} /> - + {!isEvmDomain && ( + + )} {token.symbol === "DFI" && token.id !== "0_evm" && (