From 89b9b56b7499f0c5e4f678ec605bde29662ae766 Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Sun, 19 Jan 2025 13:57:16 -0800 Subject: [PATCH] Fix followup/response button behavior --- webview-ui/src/components/chat/ChatView.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webview-ui/src/components/chat/ChatView.tsx b/webview-ui/src/components/chat/ChatView.tsx index 06ff6af2e0..ef51c676a5 100644 --- a/webview-ui/src/components/chat/ChatView.tsx +++ b/webview-ui/src/components/chat/ChatView.tsx @@ -99,14 +99,14 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie case "followup": setTextAreaDisabled(isPartial) setClineAsk("followup") - setEnableButtons(isPartial) + setEnableButtons(false) // setPrimaryButtonText(undefined) // setSecondaryButtonText(undefined) break case "respond_to_inquiry": setTextAreaDisabled(isPartial) setClineAsk("respond_to_inquiry") - setEnableButtons(isPartial) + setEnableButtons(false) // setPrimaryButtonText(undefined) // setSecondaryButtonText(undefined) break