@wlloyalty/wll-react-sdk 1.0.63 → 1.0.65

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/dist/native.js CHANGED
@@ -21033,7 +21033,7 @@ var Group = function (_a) {
21033
21033
  * @returns A cleaned up number as a number
21034
21034
  */
21035
21035
  var cleanNumber = function (value) {
21036
- return Number(value.toString().trim().replace(/\s+/g, ''));
21036
+ return Number(Number(value.toString().trim().replace(/\s+/g, '')).toFixed(2));
21037
21037
  };
21038
21038
  /**
21039
21039
  * Applies a multiplier to a base value. Handles string multipliers by converting them to numbers.