From 3ea474795ac4f0e4186907684779330112875749 Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Fri, 4 Oct 2024 07:50:21 -0400 Subject: [PATCH] Revert --- src/core/ClaudeDev.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/core/ClaudeDev.ts b/src/core/ClaudeDev.ts index b5b691e..5ba116e 100644 --- a/src/core/ClaudeDev.ts +++ b/src/core/ClaudeDev.ts @@ -1569,21 +1569,21 @@ export class ClaudeDev { // Try to match a parameter tag with content, even if the closing tag is missing or partial // matches and rest of line as paramContent - const paramMatch = trimmed.match(/^<(\w+)>(.*)$/) - if (paramMatch) { - const paramName = paramMatch[1] as ToolParamName - let paramContent = paramMatch[2] + // const paramMatch = trimmed.match(/^<(\w+)>(.*)$/) + // if (paramMatch) { + // const paramName = paramMatch[1] as ToolParamName + // let paramContent = paramMatch[2] - // Remove any closing tag or partial closing tag from paramContent - // replaces any sequence that starts with