chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-24 07:50:33 +00:00
parent a4551a94b4
commit d465cd476a
6 changed files with 88 additions and 87 deletions
@@ -47,17 +47,15 @@ export async function installStressSessionTabs(page: Page, input?: { draftID?: s
)
localStorage.setItem(
"opencode.global.dat:tabs",
JSON.stringify(
[
...sessionIDs.map((sessionId) => ({
type: "session",
server,
dirBase64,
sessionId,
})),
...(draftID ? [{ type: "draft", draftID, server, directory }] : []),
],
),
JSON.stringify([
...sessionIDs.map((sessionId) => ({
type: "session",
server,
dirBase64,
sessionId,
})),
...(draftID ? [{ type: "draft", draftID, server, directory }] : []),
]),
)
},
{