Skip to content

Commit bbed890

Browse files
committed
update from PR comments / remove extra description
1 parent 830dbba commit bbed890

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
{
7878
"command": "roo-cline.mcpButtonClicked",
7979
"title": "MCP Servers",
80-
"icon": "$(server)"
80+
"icon": "$(extensions)"
8181
},
8282
{
8383
"command": "roo-cline.promptsButtonClicked",

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
877877
}, [])
878878
useEvent("wheel", handleWheel, window, { passive: true }) // passive improves scrolling performance
879879

880-
const placeholderText = task ? "Type a message..." : "Type your task here...";
880+
const placeholderText = task ? "Type a message..." : "Type your task here..."
881881
const itemContent = useCallback(
882882
(index: number, messageOrGroup: ClineMessage | ClineMessage[]) => {
883883
// browser session group
@@ -1053,10 +1053,6 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
10531053
/>
10541054
MCP Extensions
10551055
</div>
1056-
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
1057-
<span className="codicon codicon-tools" style={{ fontSize: "14px" }} />
1058-
Custom Tools
1059-
</div>
10601056
</div>
10611057
</div>
10621058
{taskHistory.length > 0 && <HistoryPreview showHistoryView={showHistoryView} />}

0 commit comments

Comments
 (0)