fix(app): startup time

This commit is contained in:
Adam
2026-01-01 20:58:12 -06:00
parent 0f34634c52
commit cd2c160cf6
2 changed files with 56 additions and 46 deletions

View File

@@ -18,8 +18,11 @@ export const { use: useSync, provider: SyncProvider } = createSimpleContext({
return {
data: store,
set: setStore,
get status() {
return store.status
},
get ready() {
return store.ready
return store.status !== "loading"
},
get project() {
const match = Binary.search(globalSync.data.project, store.project, (p) => p.id)