diff options
author | Ty Dunn <ty@tydunn.com> | 2023-09-18 17:16:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 17:16:36 -0700 |
commit | 784c00cd693d43ac77059ecf7dd01ac46e9856d6 (patch) | |
tree | 739a7e894102bfbd4995d2988ed36cca47a3b071 /extension/react-app/src/components/ComboBox.tsx | |
parent | c4a447ab9b4d5080ce30f1cd11d5a199a8860365 (diff) | |
download | sncontinue-784c00cd693d43ac77059ecf7dd01ac46e9856d6.tar.gz sncontinue-784c00cd693d43ac77059ecf7dd01ac46e9856d6.tar.bz2 sncontinue-784c00cd693d43ac77059ecf7dd01ac46e9856d6.zip |
updating placeholder text and color (#486)
Diffstat (limited to 'extension/react-app/src/components/ComboBox.tsx')
-rw-r--r-- | extension/react-app/src/components/ComboBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx index a91edaca..48df368b 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -648,7 +648,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { typeof inQueryForContextProvider !== "undefined" } disabled={props.disabled} - placeholder={`Ask a question, give instructions, type '/' for slash commands, or '@' to add context`} + placeholder={`Ask a question, type '/' for slash commands, or '@' to add context`} {...getInputProps({ onCompositionStart: () => setIsComposing(true), onCompositionEnd: () => setIsComposing(false), |