@data-fair/lib-vue 1.13.9 → 1.13.10

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/session.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@data-fair/lib-vue",
3
- "version": "1.13.9",
3
+ "version": "1.13.10",
4
4
  "description": "Composables and other utilities for Vue applications in the data-fair stack.",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -28,7 +28,7 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@data-fair/lib-common-types": "^1.1.0",
31
+ "@data-fair/lib-common-types": "^1.5.3",
32
32
  "@data-fair/lib-utils": "^1.0.0",
33
33
  "jwt-decode": "^4.0.0",
34
34
  "universal-cookie": "^7.2.0"
package/session.js CHANGED
@@ -191,7 +191,7 @@ export async function getSession (initOptions) {
191
191
  } else {
192
192
  await customFetch(`${options.directoryUrl}/api/auth/asadmin`, { method: 'DELETE' })
193
193
  }
194
- readState()
194
+ goTo(null)
195
195
  }
196
196
  const cancelDeletion = async () => {
197
197
  if (state.user == null) { return }