Fix management app flashing on page init (#2692)

* Fix management app flashing on init

* Release notes
This commit is contained in:
Joel Jeremy Marquez
2024-05-02 10:34:20 -07:00
committed by GitHub
parent 8f543a29e0
commit 688bfe59e8
2 changed files with 12 additions and 5 deletions

View File

@@ -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 />

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [joel-jeremy]
---
Fix budget list / management app flashing on page init.