perf(app): performance improvements

This commit is contained in:
adamelmore
2026-01-25 21:45:44 -06:00
parent 9a33b1ec88
commit d03c5f6b3f
3 changed files with 43 additions and 16 deletions

View File

@@ -218,7 +218,7 @@ export const { use: useLayout, provider: LayoutProvider } = createSimpleContext(
}
function enrich(project: { worktree: string; expanded: boolean }) {
const [childStore] = globalSync.child(project.worktree)
const [childStore] = globalSync.child(project.worktree, { bootstrap: false })
const projectID = childStore.project
const metadata = projectID
? globalSync.data.project.find((x) => x.id === projectID)