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
commit5236e6287e9bacb15a285a03a27f6919d87f9626 (patch)
treeb711f46d19584f02aac2a3928cd8d6c9a6fc0a07 /extension/react-app/src/components/ComboBox.tsx
parent79b4da7e0afe773d161d2e50688dd31791efa1e1 (diff)
parentf509a2b30d8bee581d1bfd91586acc54e9209599 (diff)
downloadsncontinue-5236e6287e9bacb15a285a03a27f6919d87f9626.tar.gz
sncontinue-5236e6287e9bacb15a285a03a27f6919d87f9626.tar.bz2
sncontinue-5236e6287e9bacb15a285a03a27f6919d87f9626.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;