summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/ComboBox.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-17 12:05:05 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-17 12:05:05 -0700
commitc60f9421d669add94f5c7c1f3eb440783b3fb963 (patch)
tree2881f87e71456931fae1d15f40a876161a38e171 /extension/react-app/src/components/ComboBox.tsx
parent08221a0879b4a163eab6860524f255dbcb4743ae (diff)
parente5b15e38982300dd555006c010bf3e887bf4bd7a (diff)
downloadsncontinue-c60f9421d669add94f5c7c1f3eb440783b3fb963.tar.gz
sncontinue-c60f9421d669add94f5c7c1f3eb440783b3fb963.tar.bz2
sncontinue-c60f9421d669add94f5c7c1f3eb440783b3fb963.zip
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'extension/react-app/src/components/ComboBox.tsx')
-rw-r--r--extension/react-app/src/components/ComboBox.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx
index 0ea8a3e1..f327e3a3 100644
--- a/extension/react-app/src/components/ComboBox.tsx
+++ b/extension/react-app/src/components/ComboBox.tsx
@@ -249,11 +249,11 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => {
props.onToggleAddContext();
}}
>
- Highlight to Add Context
+ Highlight code section
</EmptyPillDiv>
) : (
<HeaderButtonWithText
- text="Add to Context"
+ text="Add more code to context"
onClick={() => {
props.onToggleAddContext();
}}
@@ -265,7 +265,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => {
<div className="flex px-2" ref={divRef} hidden={!downshiftProps.isOpen}>
<MainTextInput
disabled={props.disabled}
- placeholder={`Ask a question, give instructions, or type '/' to see slash commands. ${getMetaKeyLabel()}⏎ to edit.`}
+ placeholder={`Ask a question, give instructions, or type '/' to see slash commands`}
{...getInputProps({
onChange: (e) => {
const target = e.target as HTMLTextAreaElement;