diff --git a/webview-ui/src/components/ChatTextArea.tsx b/webview-ui/src/components/ChatTextArea.tsx index 146e360..cca75a1 100644 --- a/webview-ui/src/components/ChatTextArea.tsx +++ b/webview-ui/src/components/ChatTextArea.tsx @@ -540,7 +540,7 @@ const ChatTextArea = forwardRef( display: "flex", alignItems: "flex-center", height: textAreaBaseHeight || 31, - bottom: 9, // should be 10 but doesnt look good on mac + bottom: 9.5, // should be 10 but doesnt look good on mac zIndex: 2, }}>
diff --git a/webview-ui/src/components/ChatView.tsx b/webview-ui/src/components/ChatView.tsx index 78a7812..f82cf47 100644 --- a/webview-ui/src/components/ChatView.tsx +++ b/webview-ui/src/components/ChatView.tsx @@ -413,7 +413,7 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie }, [visibleMessages, didScrollFromApiReqTs]) const placeholderText = useMemo(() => { - const text = task ? "Type a message..." : "Type your task here..." + const text = task ? "Type a message (@ to add context)..." : "Type your task here (@ to add context)..." return text }, [task])