Skip to content

Commit e196a59

Browse files
fix(launcher): cloud_store.is_connexion_launched
1 parent 0e206e5 commit e196a59

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

components/Launcher.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<vue-recaptcha ref="recaptcha" :sitekey="site_key" :loadRecaptchaScript="true"
99
@expired="is_captcha_validated = false" @verify="submit_recaptcha" align-self="center" />
1010
</v-col>
11-
<v-col v-else-if="!cloud_store.is_running && !cloud_store.is_connexion_launched">
11+
<v-col v-else-if="!cloud_store.is_running && cloud_store.is_connexion_launched">
1212
<Loading />
1313
</v-col>
1414
</v-row>

stores/cloud.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ export const use_cloud_store = defineStore('cloud', {
1212
},
1313
is_busy: () => {
1414
return use_geode_store().is_busy || use_websocket_store().is_busy
15-
}
16-
15+
},
1716
},
1817
actions: {
1918
async create_connexion () {

0 commit comments

Comments
 (0)