@guillotinaweb/react-gmi 0.32.2 → 0.32.3

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.
@@ -14521,7 +14521,7 @@
14521
14521
  _proto.willExpire = function willExpire(expiration) {
14522
14522
  var now = new Date().getTime();
14523
14523
 
14524
- if (parseInt(expiration) * 1000 < now + 10 * 1000) {
14524
+ if (parseInt(expiration) < now + 10) {
14525
14525
  return true;
14526
14526
  }
14527
14527
 
@@ -14531,7 +14531,7 @@
14531
14531
  _proto.isExpired = function isExpired(expiration) {
14532
14532
  var now = new Date().getTime();
14533
14533
 
14534
- if (parseInt(expiration) * 1000 > now) {
14534
+ if (parseInt(expiration) > now) {
14535
14535
  return false;
14536
14536
  }
14537
14537