epicenter-libs 3.34.0 → 3.34.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epicenter-libs",
3
- "version": "3.34.0",
3
+ "version": "3.34.1",
4
4
  "main": "dist/cjs/epicenter.js",
5
5
  "type": "module",
6
6
  "module": "dist/module/epicenter.js",
@@ -230,6 +230,10 @@ class Identification {
230
230
  const project = account && projectShortName ? `/${projectShortName}` : '';
231
231
  this.session = session;
232
232
  cookies.removeItem(EPI_SSO_KEY, { path: `/app${account}${project}` });
233
+ cookies.removeItem(EPI_SSO_KEY, {
234
+ domain: `.${window.location.hostname}`,
235
+ path: `/app${account}${project}`,
236
+ });
233
237
  }
234
238
  }
235
239
  }