scope360-core 0.0.38 → 0.0.39

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.
@@ -11520,12 +11520,12 @@ class Nt {
11520
11520
  return pa.get(e);
11521
11521
  }
11522
11522
  static removeItem(e) {
11523
- pa.remove(e);
11523
+ pa.remove(e, { domain: window.location.hostname === "localhost" ? "localhost" : ".scope360.io" });
11524
11524
  }
11525
11525
  static clear() {
11526
11526
  const e = Object.keys(pa.get());
11527
11527
  for (const t of e)
11528
- pa.remove(t);
11528
+ pa.remove(t, { domain: window.location.hostname === "localhost" ? "localhost" : ".scope360.io" });
11529
11529
  }
11530
11530
  static getAll() {
11531
11531
  return pa.get();