Skip to content

Commit bff678e

Browse files
committed
add state cleanup
Signed-off-by: Ian Bolton <[email protected]>
1 parent c4151e6 commit bff678e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vscode/core/src/solutionWorkflowOrchestrator.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,10 @@ export class SolutionWorkflowOrchestrator {
105105
// Clear modified files
106106
this.state.modifiedFiles.clear();
107107

108-
// Reset state flags
108+
// Reset state flags to prevent stale UI overlays
109109
this.state.mutateData((draft) => {
110110
draft.isWaitingForUserInteraction = false;
111+
draft.isProcessingQueuedMessages = false;
111112
draft.chatMessages = [];
112113
});
113114
}

0 commit comments

Comments
 (0)