Skip to content

Commit

Permalink
fix: incorrect DFI icon in the summary section
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleleow committed Jul 29, 2021
1 parent 7d8e0f7 commit 65f4cc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ function TokenVsUtxosInfo (props: { navigation: NavigationProp<BalanceParamList>
* 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 (
<View style={tailwind('flex-row h-12 pl-4 pr-4 items-center')}>
Expand Down

0 comments on commit 65f4cc1

Please sign in to comment.