From 93e76a30658fdbbeb281700bbc5c7450a2d4182a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20=C5=A0ev=C4=8D=C3=ADk?= Date: Thu, 27 Dec 2018 11:42:45 +0100 Subject: [PATCH] Fix: Display wallet balance consistently on all screens --- screen/wallets/reorderWallets.js | 2 +- screen/wallets/selectWallet.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/screen/wallets/reorderWallets.js b/screen/wallets/reorderWallets.js index d1e8571b6..ea0321f63 100644 --- a/screen/wallets/reorderWallets.js +++ b/screen/wallets/reorderWallets.js @@ -152,7 +152,7 @@ export default class ReorderWallets extends Component { color: '#fff', }} > - {loc.formatBalance(item.getBalance())} + {loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit())} - {loc.formatBalance(item.getBalance())} + {loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit())}