From cef2368491f166a8b29fda2c52fed167c368b294 Mon Sep 17 00:00:00 2001 From: Best Codes <106822363+The-Best-Codes@users.noreply.github.com> Date: Tue, 22 Apr 2025 11:33:12 -0500 Subject: [PATCH] fix: fix regression in welcome screen flicker (#2279) --- ui/desktop/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/desktop/src/App.tsx b/ui/desktop/src/App.tsx index 94900845..7956a5ad 100644 --- a/ui/desktop/src/App.tsx +++ b/ui/desktop/src/App.tsx @@ -88,7 +88,7 @@ const getInitialView = (): ViewConfig => { // Default case return { - view: 'welcome', + view: 'loading', viewOptions: {}, }; };