This commit is contained in:
Chris Wanstrath 2025-09-22 10:43:16 -07:00
parent c397cda8af
commit 56007e1d1c

View File

@ -59,7 +59,7 @@ function processExecOutput(output: string | any): ["ok" | "error", CommandOutput
function getState(session: string, id: string): State { function getState(session: string, id: string): State {
let state = sessions.get(session) let state = sessions.get(session)
if (!state) { if (!state) {
state = { session, project: "test" } state = { session, project: "" }
sessions.set(session, state) sessions.set(session, state)
} }
state.id = id state.id = id