@wlloyalty/wll-react-sdk 1.0.90 → 1.0.91

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
@@ -4318,7 +4318,7 @@ var PointsTileFormattedPoints = function () {
4318
4318
  if (!isContextValid(tileContext))
4319
4319
  return null;
4320
4320
  var _a = tileContext.configuration, _b = _a.pointsMultiplier, pointsMultiplier = _b === void 0 ? 1 : _b, _c = _a.pointsPrefix, pointsPrefix = _c === void 0 ? '' : _c, _d = _a.pointsSuffix, pointsSuffix = _d === void 0 ? 'pts' : _d, _e = _a.points, points = _e === void 0 ? 0 : _e;
4321
- if (points === undefined || points === 0)
4321
+ if (points === undefined)
4322
4322
  return null;
4323
4323
  var calculatedPoints = applyMultiplier(points, pointsMultiplier);
4324
4324
  var fullPointsText = "".concat(pointsPrefix).concat(calculatedPoints, " ").concat(pointsSuffix).trim();