@designcrowd/fe-shared-lib 1.2.19-ast-upsell-1 → 1.2.19-ast-upsell-2
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.
package/package.json
CHANGED
|
@@ -95,7 +95,7 @@ const formatCurrency = (amount, locale, currency, fraction = 0, showAbbreviation
|
|
|
95
95
|
|
|
96
96
|
const altAudAbbreviation = 'AU';
|
|
97
97
|
if (showAbbreviation && !localeAmount.includes(abbreviationTrimmed)) {
|
|
98
|
-
return localeAmount.replace(symbolTrimmed
|
|
98
|
+
return localeAmount.replace(symbolTrimmed, `${abbreviationTrimmed}${symbolTrimmed}`);
|
|
99
99
|
} else if (!showAbbreviation && localeAmount.includes(altAudAbbreviation)) {
|
|
100
100
|
return localeAmount.replace(altAudAbbreviation, '');
|
|
101
101
|
} else if (!showAbbreviation && localeAmount.includes(abbreviationTrimmed)) {
|
|
@@ -119,9 +119,6 @@ export {
|
|
|
119
119
|
uploadYourLogoTr,
|
|
120
120
|
sharedPaymentConfigTr,
|
|
121
121
|
priceTr,
|
|
122
|
-
<<<<<<< HEAD
|
|
123
122
|
upsellModalComponentsTr,
|
|
124
|
-
=======
|
|
125
123
|
formatCurrency,
|
|
126
|
-
>>>>>>> 50c5e48f5e4e0e02e5b93c356d9b4c6f96639d99
|
|
127
124
|
};
|