diff --git a/app/components/Launcher.vue b/app/components/Launcher.vue index 297bb88b..16000629 100644 --- a/app/components/Launcher.vue +++ b/app/components/Launcher.vue @@ -5,22 +5,16 @@ import { useInfraStore } from "@ogw_front/stores/infra" const infraStore = useInfraStore() - - watch( - () => infraStore.is_captcha_validated, - (value, oldValue) => { - if (value && !oldValue && import.meta.client) { - infraStore.create_backend() - } - }, - ) + if (infraStore.app_mode !== appMode.CLOUD) { + infraStore.create_backend() + }