Skip to content

Commit 7302a3e

Browse files
author
Bruno Bergher
committed
Removes unnecessary fallback case
1 parent 61d1799 commit 7302a3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export const ModeSelector: React.FC<ModeSelectorProps> = ({
142142
<p className="m-0 mb-0 font-bold">{mode.name}</p>
143143
{mode.description && (
144144
<p className="m-0 py-0 pl-4 h-4 flex-1 text-xs overflow-hidden">
145-
{mode.description || mode.whenToUse}
145+
{mode.description}
146146
</p>
147147
)}
148148
</div>

0 commit comments

Comments
 (0)