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 177ddc7 commit c6662d6Copy full SHA for c6662d6
stores/cloud.js
@@ -50,7 +50,7 @@ export const use_cloud_store = defineStore('cloud', {
50
const errors_store = use_errors_store()
51
const config = useRuntimeConfig()
52
const public_runtime_config = config.public
53
- const { data, error } = await useFetch(`${public_runtime_config.GEODE_PROTOCOL}://${public_runtime_config.API_URL}:${public_runtime_config.GEODE_PORT}${public_runtime_config.SITE_BRANCH}${public_runtime_config.PROJECT}/createbackend`, { method: 'POST' })
+ const { data, error } = await useFetch(`${public_runtime_config.GEODE_PROTOCOL}://${public_runtime_config.API_URL}:${public_runtime_config.GEODE_PORT}${public_runtime_config.SITE_BRANCH}/${public_runtime_config.PROJECT}/createbackend`, { method: 'POST' })
54
if (data.value !== null) {
55
this.ID = data.value.ID
56
localStorage.setItem('ID', data.value.ID)
0 commit comments