diff --git a/app/components/Views/ConnectQRHardware/SelectQRAccounts/index.tsx b/app/components/Views/ConnectQRHardware/SelectQRAccounts/index.tsx index 52b02a7fc7e..68c1700eba3 100644 --- a/app/components/Views/ConnectQRHardware/SelectQRAccounts/index.tsx +++ b/app/components/Views/ConnectQRHardware/SelectQRAccounts/index.tsx @@ -1,13 +1,13 @@ import React from 'react'; import { View, Text, FlatList, StyleSheet, TouchableOpacity } from 'react-native'; +import { useSelector } from 'react-redux'; +import { useNavigation } from '@react-navigation/native'; +import CheckBox from '@react-native-community/checkbox'; import { strings } from '../../../../../locales/i18n'; import Icon from 'react-native-vector-icons/FontAwesome'; import { fontStyles } from '../../../../styles/common'; -import CheckBox from '@react-native-community/checkbox'; import { IAccount } from '../types'; import { renderFromWei } from '../../../../util/number'; -import { useSelector } from 'react-redux'; -import { useNavigation } from '@react-navigation/native'; import { getEtherscanAddressUrl } from '../../../../util/etherscan'; import { mockTheme, useAppThemeFromContext } from '../../../../util/theme'; import EthereumAddress from '../../../UI/EthereumAddress'; @@ -127,7 +127,9 @@ const SelectQRAccounts = (props: ISelectQRAccountsProps) => { /> {item.index} - {renderFromWei(item.balance)} ETH + + {renderFromWei(item.balance)} {provider.ticker} +