Skip to content

Commit 2c2d184

Browse files
committed
Slight visual fixes
1 parent 3e303ea commit 2c2d184

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
994994
}}>
995995
{showAnnouncement && <Announcement version={version} hideAnnouncement={hideAnnouncement} />}
996996
<div style={{ padding: "0 20px", flexShrink: 0 }}>
997-
<h2>What can I do for you?</h2>
997+
<h2>What can Roo do for you?</h2>
998998
<p>
999999
Thanks to the latest breakthroughs in agentic coding capabilities, I can handle complex
10001000
software development tasks step-by-step. With tools that let me create & edit files, explore

webview-ui/src/components/prompts/PromptsView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ import {
2626
import { TOOL_GROUPS, GROUP_DISPLAY_NAMES, ToolGroup } from "../../../../src/shared/tool-groups"
2727
import { vscode } from "../../utils/vscode"
2828

29-
// Get all available groups from GROUP_DISPLAY_NAMES
30-
const availableGroups = Object.keys(TOOL_GROUPS) as ToolGroup[]
29+
// Get all available groups from GROUP_DISPLAY_NAMES (excluding 'modes')
30+
const availableGroups = (Object.keys(TOOL_GROUPS) as ToolGroup[]).filter((group) => group !== "modes")
3131

3232
type PromptsViewProps = {
3333
onDone: () => void

0 commit comments

Comments
 (0)