perf(app): performance improvements

This commit is contained in:
adamelmore
2026-01-25 21:45:44 -06:00
parent ac3cc25546
commit ff79ea9469
3 changed files with 43 additions and 16 deletions
+1 -1
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)