We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4a86789 + 9e5c6b1 commit 75f4a6cCopy full SHA for 75f4a6c
.changeset/orange-geese-provide.md
@@ -0,0 +1,5 @@
1
+---
2
+"roo-cline": patch
3
4
+
5
+Allow users to clear out custom instructions for the built-in modes
webview-ui/src/components/prompts/PromptsView.tsx
@@ -804,7 +804,7 @@ const PromptsView = ({ onDone }: PromptsViewProps) => {
804
const existingPrompt = customModePrompts?.[mode] as PromptComponent
805
updateAgentPrompt(mode, {
806
...existingPrompt,
807
- customInstructions: value.trim() || undefined,
+ customInstructions: value.trim(),
808
})
809
}
810
}}
0 commit comments