Skip to content
Snippets Groups Projects
Unverified Commit 688bfe59 authored by Joel Jeremy Marquez's avatar Joel Jeremy Marquez Committed by GitHub
Browse files

Fix management app flashing on page init (#2692)

* Fix management app flashing on init

* Release notes
parent 8f543a29
No related branches found
No related tags found
No related merge requests found
...@@ -116,11 +116,12 @@ function AppInner({ budgetId, cloudFileId }: AppInnerProps) { ...@@ -116,11 +116,12 @@ function AppInner({ budgetId, cloudFileId }: AppInnerProps) {
{(initializing || !budgetId) && ( {(initializing || !budgetId) && (
<AppBackground initializing={initializing} loadingText={loadingText} /> <AppBackground initializing={initializing} loadingText={loadingText} />
)} )}
{budgetId ? ( {!initializing &&
<FinancesApp /> (budgetId ? (
) : ( <FinancesApp />
<ManagementApp isLoading={loadingText != null} /> ) : (
)} <ManagementApp isLoading={loadingText != null} />
))}
<UpdateNotification /> <UpdateNotification />
<MobileWebMessage /> <MobileWebMessage />
......
---
category: Bugfix
authors: [joel-jeremy]
---
Fix budget list / management app flashing on page init.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment