Skip to content

Commit 9bb7865

Browse files
committed
ui nits
1 parent d409738 commit 9bb7865

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/web/src/features/chat/components/chatBox/chatBox.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
)}

packages/web/src/features/chat/components/chatBox/contextSelector.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import * as React from "react";
44
import {
55
CheckIcon,
66
ChevronDown,
7-
BookMarkedIcon,
87
FolderIcon,
98
LayersIcon,
9+
LibraryBigIcon,
1010
} from "lucide-react";
1111
import 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
(() => {

0 commit comments

Comments
 (0)