fix(tui): fix type error for calling workspace.warp (#25801)

This commit is contained in:
James Long 2026-05-04 22:06:33 -04:00 committed by GitHub
parent 2740d398fa
commit edd480f56b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)