Add resizing to VSCode TextArea

This commit is contained in:
Dennis Bartlett 2025-01-22 04:33:06 -06:00
parent cc42f2f81c
commit 5c58a9be75

View file

@ -98,6 +98,7 @@ const SettingsView = ({ onDone }: SettingsViewProps) => {
<VSCodeTextArea
value={customInstructions ?? ""}
style={{ width: "100%" }}
resize="vertical"
rows={4}
placeholder={'e.g. "Run unit tests at the end", "Use TypeScript with async/await", "Speak in Spanish"'}
onInput={(e: any) => setCustomInstructions(e.target?.value ?? "")}>