Skip to content

Commit 3f6c333

Browse files
committed
removed "/"
1 parent 89e9944 commit 3f6c333

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"description": "OpenSource Vue/Vuetify framework for web applications",
2525
"type": "module",
26-
"version": "0.0.22",
26+
"version": "0.0.23",
2727
"main": "./nuxt.config.js",
2828
"dependencies": {
2929
"@kitware/vtk.js": "^28.8.0",

stores/cloud.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const use_cloud_store = defineStore('cloud', {
5252
const errors_store = use_errors_store()
5353
const config = useRuntimeConfig()
5454
const public_runtime_config = config.public
55-
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}/tools/createbackend`, { method: 'POST' })
55+
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}/tools/createbackend`, { method: 'POST' })
5656
if (data.value !== null) {
5757
this.ID = data.value.ID
5858
localStorage.setItem('ID', data.value.ID)

0 commit comments

Comments
 (0)