We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49bf283 commit 029a602Copy full SHA for 029a602
apps/web/src/components/ChatView.tsx
@@ -3072,6 +3072,7 @@ export default function ChatView({ threadId }: ChatViewProps) {
3072
: {}),
3073
}
3074
: undefined;
3075
+ beginLocalDispatch({ preparingWorktree: false });
3076
await api.orchestration.dispatchCommand({
3077
type: "thread.turn.start",
3078
commandId: newCommandId(),
@@ -3089,7 +3090,6 @@ export default function ChatView({ threadId }: ChatViewProps) {
3089
3090
...(bootstrap ? { bootstrap } : {}),
3091
createdAt: messageCreatedAt,
3092
});
- beginLocalDispatch({ preparingWorktree: false });
3093
turnStartSucceeded = true;
3094
})().catch(async (err: unknown) => {
3095
if (
0 commit comments