We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58e0ed7 commit dc3944aCopy full SHA for dc3944a
apps/web/src/components/ChatView.browser.tsx
@@ -683,12 +683,7 @@ function resolveWsRpc(body: NormalizedWsRpcRequestBody): unknown {
683
threadId: typeof body.threadId === "string" ? body.threadId : THREAD_ID,
684
terminalId: typeof body.terminalId === "string" ? body.terminalId : "default",
685
cwd: typeof body.cwd === "string" ? body.cwd : "/repo/project",
686
- worktreePath:
687
- typeof body.worktreePath === "string"
688
- ? body.worktreePath
689
- : body.worktreePath === null
690
- ? null
691
- : null,
+ worktreePath: typeof body.worktreePath === "string" ? body.worktreePath : null,
692
status: "running",
693
pid: 123,
694
history: "",
0 commit comments