瀏覽代碼

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

James Long 3 月之前
父節點
當前提交
edd480f56b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/opencode/src/cli/cmd/tui/component/dialog-workspace-create.tsx

+ 1 - 1
packages/opencode/src/cli/cmd/tui/component/dialog-workspace-create.tsx

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