From d7a5e8f09b96d8f78308c948c82f814f62db761a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Thu, 19 Jul 2018 19:43:16 +0200 Subject: [PATCH] Fixes #1186 --- src/api/Ripple.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/Ripple.js b/src/api/Ripple.js index ada06bb4..06f359f9 100644 --- a/src/api/Ripple.js +++ b/src/api/Ripple.js @@ -41,6 +41,7 @@ export const formatAPICurrencyXRP = (amount: BigNumber) => { const value = formatCurrencyUnit(rippleUnit, amount, { showAllDigits: true, disableRounding: true, + useGrouping: false, }) return { currency: 'XRP', value } }