mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-06 08:21:50 +00:00
fix(tui): fix type error for calling workspace.warp (#25801)
This commit is contained in:
parent
2740d398fa
commit
edd480f56b
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ export async function warpWorkspaceSession(input: {
|
|||
}): Promise<boolean> {
|
||||
const result = await input.sdk.client.experimental.workspace
|
||||
.warp({
|
||||
id: input.workspaceID,
|
||||
id: input.workspaceID ?? undefined,
|
||||
sessionID: input.sessionID,
|
||||
})
|
||||
.catch(() => undefined)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue