From 824bc0991dce8d4988d4b5ca57e7494b9ac72fc4 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 8f0d5fd4..9adbf924 100644 --- a/src/api/Ripple.js +++ b/src/api/Ripple.js @@ -40,6 +40,7 @@ export const formatAPICurrencyXRP = (amount: number) => { const value = formatCurrencyUnit(rippleUnit, amount, { showAllDigits: true, disableRounding: true, + useGrouping: false, }) return { currency: 'XRP', value } }