mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
Fix management app flashing on page init (#2692)
* Fix management app flashing on init * Release notes
This commit is contained in:
committed by
GitHub
parent
8f543a29e0
commit
688bfe59e8
@@ -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 />
|
||||
|
||||
6
upcoming-release-notes/2692.md
Normal file
6
upcoming-release-notes/2692.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [joel-jeremy]
|
||||
---
|
||||
|
||||
Fix budget list / management app flashing on page init.
|
||||
Reference in New Issue
Block a user