File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/web/src/features/chat/components/chatBox Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ export const ChatBox = ({
146146 if ( isSubmitDisabled ) {
147147 if ( isSubmitDisabledReason === "no-repos-selected" ) {
148148 toast ( {
149- description : "⚠️ One or more repositories or contexts must be selected." ,
149+ description : "⚠️ One or more repositories or search contexts must be selected." ,
150150 variant : "destructive" ,
151151 } ) ;
152152 onContextSelectorOpenChanged ( true ) ;
@@ -323,7 +323,7 @@ export const ChatBox = ({
323323 < TooltipContent >
324324 < div className = "flex flex-row items-center" >
325325 < TriangleAlertIcon className = "h-4 w-4 text-warning mr-1" />
326- < span className = "text-destructive" > One or more repositories must be selected.</ span >
326+ < span className = "text-destructive" > One or more repositories or search contexts must be selected.</ span >
327327 </ div >
328328 </ TooltipContent >
329329 ) }
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ import * as React from "react";
44import {
55 CheckIcon ,
66 ChevronDown ,
7- BookMarkedIcon ,
87 FolderIcon ,
98 LayersIcon ,
9+ LibraryBigIcon ,
1010} from "lucide-react" ;
1111import Image from "next/image" ;
1212
@@ -213,7 +213,7 @@ export const ContextSelector = React.forwardRef<
213213 </ div >
214214 < div className = "flex items-center gap-2 flex-1" >
215215 { item . type === 'context' ? (
216- < BookMarkedIcon className = "h-4 w-4 text-muted-foreground" />
216+ < LibraryBigIcon className = "h-4 w-4 text-muted-foreground" />
217217 ) : (
218218 // Render code host icon for repos
219219 ( ( ) => {
You can’t perform that action at this time.
0 commit comments