From 46739ca7cd970cf84f88c3f0cf5ca8b756b64f7d Mon Sep 17 00:00:00 2001 From: Filip <34747899+neriousy@users.noreply.github.com> Date: Tue, 17 Feb 2026 16:49:20 +0100 Subject: fix(app): ui flashing when switching tabs (#13978) --- packages/app/src/context/global-sync/bootstrap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/app/src/context/global-sync/bootstrap.ts') diff --git a/packages/app/src/context/global-sync/bootstrap.ts b/packages/app/src/context/global-sync/bootstrap.ts index 478bc02f5..40a30cba8 100644 --- a/packages/app/src/context/global-sync/bootstrap.ts +++ b/packages/app/src/context/global-sync/bootstrap.ts @@ -116,7 +116,7 @@ export async function bootstrapDirectory(input: { vcsCache: VcsCache loadSessions: (directory: string) => Promise | void }) { - input.setStore("status", "loading") + if (input.store.status !== "complete") input.setStore("status", "loading") const blockingRequests = { project: () => input.sdk.project.current().then((x) => input.setStore("project", x.data!.id)), -- cgit v1.2.3