diff --git a/BlueComponents.js b/BlueComponents.js
index 066ff0fa6..1745e45f7 100644
--- a/BlueComponents.js
+++ b/BlueComponents.js
@@ -1055,7 +1055,7 @@ export class WalletsCarousel extends Component {
color: '#fff',
}}
>
- {loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit())}
+ {loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit(), true)}
CFBundleVersion
- 219
+ 220
ITSAppUsesNonExemptEncryption
LSRequiresIPhoneOS
diff --git a/loc/index.js b/loc/index.js
index 44f68186a..d43355f94 100644
--- a/loc/index.js
+++ b/loc/index.js
@@ -108,7 +108,7 @@ strings.formatBalance = (balance, toUnit, withFormatting = false) => {
return balance + ' ' + BitcoinUnit.BTC;
} else if (toUnit === BitcoinUnit.SATS) {
const value = new BigNumber(balance).multipliedBy(100000000);
- return withFormatting ? new Intl.NumberFormat().format(value.toString()) : value + ' ' + BitcoinUnit.SATS;
+ return withFormatting ? new Intl.NumberFormat().format(value.toString()).replace(',', ' ') : value + ' ' + BitcoinUnit.SATS;
} else if (toUnit === BitcoinUnit.LOCAL_CURRENCY) {
return currency.BTCToLocalCurrency(balance);
}
@@ -129,7 +129,7 @@ strings.formatBalanceWithoutSuffix = (balance, toUnit, withFormatting = false) =
const value = new BigNumber(balance).dividedBy(100000000).toFixed(8);
return removeTrailingZeros(value);
} else if (toUnit === BitcoinUnit.SATS) {
- return withFormatting ? new Intl.NumberFormat().format(balance) : balance;
+ return withFormatting ? new Intl.NumberFormat().format(balance).replace(',', ' ') : balance;
} else if (toUnit === BitcoinUnit.LOCAL_CURRENCY) {
return currency.satoshiToLocalCurrency(balance);
}
diff --git a/screen/wallets/reorderWallets.js b/screen/wallets/reorderWallets.js
index 1931fffd8..b517b5ce6 100644
--- a/screen/wallets/reorderWallets.js
+++ b/screen/wallets/reorderWallets.js
@@ -151,7 +151,7 @@ export default class ReorderWallets extends Component {
color: '#fff',
}}
>
- {loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit())}
+ {loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit(), true)}
- {loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit())}
+ {loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit(), true)}
- {loc.formatBalance(this.state.wallet.getBalance(), this.state.wallet.getPreferredBalanceUnit()).toString()}
+ {loc.formatBalance(this.state.wallet.getBalance(), this.state.wallet.getPreferredBalanceUnit(), true).toString()}