From 4570ead71fb0ffead4af6ae3467831f0ed01f2de Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Fri, 28 Feb 2025 17:17:19 -0500 Subject: [PATCH] Update ChatView.tsx --- webview-ui/src/components/chat/ChatView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webview-ui/src/components/chat/ChatView.tsx b/webview-ui/src/components/chat/ChatView.tsx index fcd1ba9a3b..786f1ea957 100644 --- a/webview-ui/src/components/chat/ChatView.tsx +++ b/webview-ui/src/components/chat/ChatView.tsx @@ -880,7 +880,7 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie const placeholderText = useMemo(() => { const baseText = task ? "Type a message..." : "Type your task here..." const contextText = "(@ to add context, / to switch modes" - const imageText = shouldDisableImages ? "hold shift to drag in files" : ", hold shift to drag in files/images" + const imageText = shouldDisableImages ? ", hold shift to drag in files" : ", hold shift to drag in files/images" return baseText + `\n${contextText}${imageText})` }, [task, shouldDisableImages])