소스 검색

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)