From 65f4cc1b1a384d73e058c98d36cb38bfe19347e4 Mon Sep 17 00:00:00 2001 From: Keng Ye Date: Thu, 29 Jul 2021 10:45:15 +0800 Subject: [PATCH] fix: incorrect DFI icon in the summary section --- app/screens/AppNavigator/screens/Balances/ConvertScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/screens/AppNavigator/screens/Balances/ConvertScreen.tsx b/app/screens/AppNavigator/screens/Balances/ConvertScreen.tsx index 0d52830dd5..a1b676a1c6 100644 --- a/app/screens/AppNavigator/screens/Balances/ConvertScreen.tsx +++ b/app/screens/AppNavigator/screens/Balances/ConvertScreen.tsx @@ -216,7 +216,7 @@ function TokenVsUtxosInfo (props: { navigation: NavigationProp * footer, UTXOS or Token DFI balance preview AFTER conversion */ function PreviewConvResult (props: { unit: string, balance: BigNumber, testID: string }): JSX.Element { - const iconType = props.unit === 'UTXOS' ? '_UTXO' : 'DFI' + const iconType = props.unit === 'UTXO' ? '_UTXO' : 'DFI' const DFIIcon = getTokenIcon(iconType) return (