From dc3e455993d61f8ee0dcd6e9d3e6f1ca0511cc8a Mon Sep 17 00:00:00 2001 From: Jin Yi Date: Wed, 11 Mar 2026 08:35:48 +0900 Subject: [PATCH] fix: cloud login page stuck on splash loader for unauthenticated users (#9725) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 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 --- src/platform/cloud/onboarding/components/CloudLayoutView.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/platform/cloud/onboarding/components/CloudLayoutView.vue b/src/platform/cloud/onboarding/components/CloudLayoutView.vue index fde68f7da2..c5cdef4602 100644 --- a/src/platform/cloud/onboarding/components/CloudLayoutView.vue +++ b/src/platform/cloud/onboarding/components/CloudLayoutView.vue @@ -8,9 +8,14 @@