Browse Source

ignore command and mcp asks with no text

Justin Quan 1 year ago
parent
commit
c66fe25060
1 changed files with 2 additions and 2 deletions
  1. 2 2
      webview-ui/src/components/chat/ChatView.tsx

+ 2 - 2
webview-ui/src/components/chat/ChatView.tsx

@@ -139,7 +139,7 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
 							setSecondaryButtonText("Reject")
 							break
 						case "command":
-							if (!isAutoApproved(lastMessage)) {
+							if (lastMessage.text && !isAutoApproved(lastMessage)) {
 								playSound("notification")
 							}
 							setTextAreaDisabled(isPartial)
@@ -156,7 +156,7 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
 							setSecondaryButtonText(undefined)
 							break
 						case "use_mcp_server":
-							if (!isAutoApproved(lastMessage)) {
+							if (lastMessage.text && !isAutoApproved(lastMessage)) {
 								playSound("notification")
 							}
 							setTextAreaDisabled(isPartial)