@veritree/services 2.83.0 → 2.84.0

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": "@veritree/services",
3
- "version": "2.83.0",
3
+ "version": "2.84.0",
4
4
  "description": "A collection of javascript functions/services to talk to veritree API",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -12,7 +12,7 @@ export const getSession = () => {
12
12
  return JSON.parse(localSession);
13
13
  }
14
14
 
15
- const sessionSession = sessionStorage.getItem("session");
15
+ const sessionSession = sessionStorage.getItem("veritree-tab-session");
16
16
 
17
17
  if (sessionSession) {
18
18
  return JSON.parse(sessionSession);