diff --git a/src/helpers/strings.ts b/src/helpers/strings.ts index 986c23a665a..b53bb781d40 100644 --- a/src/helpers/strings.ts +++ b/src/helpers/strings.ts @@ -119,9 +119,10 @@ export function formatCurrency( const currencySymbol = supportedNativeCurrencies[currency].symbol; const [whole, fraction = ''] = numericString.split('.'); - if (fraction === '') { + const numericalWholeNumber = +whole; + if (numericalWholeNumber > 0) { // if the fraction is empty and the numeric string is less than 6 characters, we can just run it through our native currency display worklet - if (numericString.length <= 6) { + if (whole.length <= 6) { return convertAmountToNativeDisplayWorklet(numericString, currency, false, true); }