ignore command and mcp asks with no text

This commit is contained in:
Justin Quan
2024-12-16 09:30:20 -08:00
parent efdc3a8639
commit c66fe25060

View File

@@ -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)