chayns-api 3.1.3 → 3.1.4

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.
@@ -378,6 +378,9 @@ class NavigationQueue {
378
378
  __idx: idx
379
379
  }
380
380
  };
381
+ if (url.includes('/intercom/overview') && !!state.idx) {
382
+ return;
383
+ }
381
384
  if (isReplace) {
382
385
  window.history.replaceState(stateWithMeta, '', url);
383
386
  } else {
@@ -376,6 +376,9 @@ export class NavigationQueue {
376
376
  __idx: idx
377
377
  }
378
378
  };
379
+ if (url.includes('/intercom/overview') && !!state.idx) {
380
+ return;
381
+ }
379
382
  if (isReplace) {
380
383
  window.history.replaceState(stateWithMeta, '', url);
381
384
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chayns-api",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
4
4
  "description": "new chayns api",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",