monkey-front-core 0.0.542 → 0.0.543

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -950,7 +950,7 @@ class MonkeyEcxFormatCurrencyPipe {
950
950
  return `${fmt}${symbol !== '' ? ` ${currency}` : ''}`;
951
951
  }
952
952
  if (currency === 'MXN') {
953
- let fmt = this.currencyPipe.transform(value, '$', symbol, '1.0-0', locale);
953
+ let fmt = this.currencyPipe.transform(value, '$', symbol, '', locale);
954
954
  fmt = `${fmt}`.replace(/[^0-9,.]/g, '');
955
955
  return `${fmt}${symbol !== '' ? ` ${currency}` : ''}`;
956
956
  }