fix(desktop): gate first launch onboarding (#34930)

This commit is contained in:
Brendan Allan
2026-07-06 16:20:15 +08:00
committed by GitHub
parent 7f57d2a9ac
commit dffecb6478
12 changed files with 204 additions and 43 deletions
+1 -1
View File
@@ -312,7 +312,7 @@ export const { use: useServer, provider: ServerProvider } = createSimpleContext(
})
}
const isReady = createMemo(() => ready() && !!state.active)
const isReady = Object.assign(createMemo(() => ready() && !!state.active), { promise: ready.promise })
const scope = (key = state.active) => ServerScope.fromServerKey(key, props.canonicalLocalServer)
const projects = createServerProjects({ scope, store, setStore })