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> {
|
}): Promise<boolean> {
|
||||||
const result = await input.sdk.client.experimental.workspace
|
const result = await input.sdk.client.experimental.workspace
|
||||||
.warp({
|
.warp({
|
||||||
id: input.workspaceID,
|
id: input.workspaceID ?? undefined,
|
||||||
sessionID: input.sessionID,
|
sessionID: input.sessionID,
|
||||||
})
|
})
|
||||||
.catch(() => undefined)
|
.catch(() => undefined)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue