diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-03 18:54:33 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-07-03 18:54:33 -0700 |
commit | bc96340b042a37e124c91ac22f7cc2d52858d178 (patch) | |
tree | 7335e5ae93f512c89d2e1e101f3b1b3173723eb9 /extension/react-app/src/components/ComboBox.tsx | |
parent | b3c3a3fd2b93c4056bd4d329579fb41e6a83c4ca (diff) | |
download | sncontinue-bc96340b042a37e124c91ac22f7cc2d52858d178.tar.gz sncontinue-bc96340b042a37e124c91ac22f7cc2d52858d178.tar.bz2 sncontinue-bc96340b042a37e124c91ac22f7cc2d52858d178.zip |
improving slash command message
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 f299c3a2..87c1abc0 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -158,7 +158,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { <div className="flex px-2" ref={divRef} hidden={!isOpen}> <MainTextInput disabled={props.disabled} - placeholder="Type '/' to see available slash commands." + placeholder="Ask a question, give instructions, or type '/' to see slash commands" {...getInputProps({ onChange: (e) => { const target = e.target as HTMLTextAreaElement; |