We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36ba3c commit caf8965Copy full SHA for caf8965
stores/cloud.js
@@ -32,7 +32,7 @@ export const use_cloud_store = defineStore('cloud', {
32
async create_connexion () {
33
if (this.is_connexion_launched) { return }
34
this.is_connexion_launched = true
35
- if (ID === '' || ID === null || typeof ID === 'undefined') {
+ if (this.ID === '' || this.ID === null || typeof this.ID === 'undefined') {
36
return this.create_backend()
37
} else {
38
const { data, error } = await useFetch(`${this.geode_url}/ping`, { method: 'POST' })
0 commit comments