From 906ce8b500d1adc25059c59093398661923434a3 Mon Sep 17 00:00:00 2001 From: Akshita Goyal <36129505+gakshita@users.noreply.github.com> Date: Sun, 18 May 2025 15:19:05 +0530 Subject: [PATCH] [WEB-4104] fix: project loading state #7065 --- web/core/store/project/project.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/core/store/project/project.store.ts b/web/core/store/project/project.store.ts index 45ab85edf..e460b1087 100644 --- a/web/core/store/project/project.store.ts +++ b/web/core/store/project/project.store.ts @@ -293,7 +293,7 @@ export class ProjectStore implements IProjectStore { update(this.projectMap, [project.id], (p) => ({ ...p, ...project })); }); this.loader = "loaded"; - this.fetchStatus = "partial"; + if (!this.fetchStatus) this.fetchStatus = "partial"; }); return projectsResponse; } catch (error) {