diff --git a/packages/app/src/context/global-sync/bootstrap.ts b/packages/app/src/context/global-sync/bootstrap.ts index 13494b7ade..65aaa450c2 100644 --- a/packages/app/src/context/global-sync/bootstrap.ts +++ b/packages/app/src/context/global-sync/bootstrap.ts @@ -151,7 +151,7 @@ export async function bootstrapDirectory(input: { Promise.all([ input.sdk.path.get().then((x) => input.setStore("path", x.data!)), input.sdk.command.list().then((x) => input.setStore("command", x.data ?? [])), - input.sdk.session.status().then((x) => input.setStore("session_status", x.data!)), + input.sdk.session.status().then((x) => input.setStore("session_status", reconcile(x.data!))), input.loadSessions(input.directory), input.sdk.mcp.status().then((x) => input.setStore("mcp", x.data!)), input.sdk.lsp.status().then((x) => input.setStore("lsp", x.data!)),