fix: allow text content to be displayed after tool use

- Remove didAlreadyUseTool check from text content processing
- Fixes issue where content after update_todo_list tool was being cut off
- Only tool uses should be blocked after first tool, not text content
- Resolves #5847
This commit is contained in:
Roo Code 2025-07-17 22:06:57 +00:00
parent a7771a3c11
commit 2f007b9eae

View file

@ -82,7 +82,7 @@ export async function presentAssistantMessage(cline: Task) {
switch (block.type) {
case "text": {
if (cline.didRejectTool || cline.didAlreadyUseTool) {
if (cline.didRejectTool) {
break
}