diff --git a/packages/desktop-client/src/components/App.tsx b/packages/desktop-client/src/components/App.tsx
index fa06630ddd4928700eaa0af7f2eaa91ddfaebc30..6135c28b9127aa8bccae83c69177dd4e234c5360 100644
--- a/packages/desktop-client/src/components/App.tsx
+++ b/packages/desktop-client/src/components/App.tsx
@@ -116,11 +116,12 @@ function AppInner({ budgetId, cloudFileId }: AppInnerProps) {
       {(initializing || !budgetId) && (
         <AppBackground initializing={initializing} loadingText={loadingText} />
       )}
-      {budgetId ? (
-        <FinancesApp />
-      ) : (
-        <ManagementApp isLoading={loadingText != null} />
-      )}
+      {!initializing &&
+        (budgetId ? (
+          <FinancesApp />
+        ) : (
+          <ManagementApp isLoading={loadingText != null} />
+        ))}
 
       <UpdateNotification />
       <MobileWebMessage />
diff --git a/upcoming-release-notes/2692.md b/upcoming-release-notes/2692.md
new file mode 100644
index 0000000000000000000000000000000000000000..9803d8ec1db353e0b985363447d7cf33003a4e02
--- /dev/null
+++ b/upcoming-release-notes/2692.md
@@ -0,0 +1,6 @@
+---
+category: Bugfix
+authors: [joel-jeremy]
+---
+
+Fix budget list / management app flashing on page init.