mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 06:52:41 +01:00
Fix: Display wallet balance consistently on all screens
This commit is contained in:
parent
6402329d64
commit
93e76a3065
2 changed files with 2 additions and 2 deletions
|
@ -152,7 +152,7 @@ export default class ReorderWallets extends Component {
|
|||
color: '#fff',
|
||||
}}
|
||||
>
|
||||
{loc.formatBalance(item.getBalance())}
|
||||
{loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit())}
|
||||
</Text>
|
||||
<Text style={{ backgroundColor: 'transparent' }} />
|
||||
<Text
|
||||
|
|
|
@ -127,7 +127,7 @@ export default class SelectWallet extends Component {
|
|||
color: '#fff',
|
||||
}}
|
||||
>
|
||||
{loc.formatBalance(item.getBalance())}
|
||||
{loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit())}
|
||||
</Text>
|
||||
<Text style={{ backgroundColor: 'transparent' }} />
|
||||
<Text
|
||||
|
|
Loading…
Add table
Reference in a new issue