fix: hide stale title chrome while notes load

This commit is contained in:
lucaronin
2026-04-09 12:20:03 +02:00
parent 64e923ac5f
commit 90fbe82bca
4 changed files with 166 additions and 113 deletions

View File

@@ -302,7 +302,11 @@ export function EditorContentLayout(model: EditorContentModel) {
} = model
if (!activeTab) {
return <div className="flex flex-1 flex-col min-w-0 min-h-0" />
return (
<div className="flex flex-1 flex-col min-w-0 min-h-0">
{isLoadingNewTab && showEditor && <EditorLoadingSkeleton />}
</div>
)
}
return (