mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-12 16:40:05 +00:00
fix: cloud login page stuck on splash loader for unauthenticated users (#9725)
## Summary Fix cloud login page showing only the splash loader (wave SVG) instead of the login form when the user is not authenticated. ## Changes - **What**: Remove splash loader on `CloudLayoutView` mount. Cloud onboarding pages do not use workspace initialization, so the `workspaceStore.spinner` transition (`true→false`) that normally removes the splash never occurs — leaving it visible indefinitely. Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
@@ -8,9 +8,14 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { onMounted } from 'vue'
|
||||
import { RouterView } from 'vue-router'
|
||||
|
||||
import GlobalToast from '@/components/toast/GlobalToast.vue'
|
||||
|
||||
import CloudTemplate from './CloudTemplate.vue'
|
||||
|
||||
onMounted(() => {
|
||||
document.getElementById('splash-loader')?.remove()
|
||||
})
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user