From 1b62352d0da7b74d451b146b328e0d91d05e2f4c Mon Sep 17 00:00:00 2001
From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com>
Date: Thu, 16 Jul 2026 15:55:22 +0530
Subject: [PATCH] refactor(document-mention-picker): replace MessageSquare icon
with MessageCircleMore for improved visual consistency
---
.../components/new-chat/document-mention-picker.tsx | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/surfsense_web/components/new-chat/document-mention-picker.tsx b/surfsense_web/components/new-chat/document-mention-picker.tsx
index dca3b5f7f..17a24f799 100644
--- a/surfsense_web/components/new-chat/document-mention-picker.tsx
+++ b/surfsense_web/components/new-chat/document-mention-picker.tsx
@@ -8,7 +8,7 @@ import {
ChevronRight,
Files,
Folder as FolderIcon,
- MessageSquare,
+ MessageCircleMore,
Unplug,
} from "lucide-react";
import {
@@ -146,7 +146,7 @@ export function promoteRecentMention(workspaceId: number, mention: MentionedDocu
function getMentionIcon(mention: MentionedDocumentInfo) {
if (mention.kind === "folder") return ;
- if (mention.kind === "thread") return ;
+ if (mention.kind === "thread") return ;
if (mention.kind === "connector") {
return getConnectorIcon(mention.connector_type, "size-4") ?? ;
}
@@ -517,7 +517,7 @@ export const DocumentMentionPicker = forwardRef<
id: "chats",
label: "Chats",
subtitle: "Reference another conversation",
- icon: ,
+ icon: ,
type: "branch",
value: { kind: "view", view: { kind: "chats" } },
});
@@ -565,7 +565,7 @@ export const DocumentMentionPicker = forwardRef<
id: getMentionDocKey(mention),
label: mention.title,
subtitle: "Chat",
- icon: ,
+ icon: ,
type: "item" as const,
disabled: selectedKeys.has(getMentionDocKey(mention)),
value: { kind: "mention" as const, mention },
@@ -625,7 +625,7 @@ export const DocumentMentionPicker = forwardRef<
id: getMentionDocKey(mention),
label: mention.title,
subtitle: "Chat",
- icon: ,
+ icon: ,
type: "item" as const,
disabled: selectedKeys.has(getMentionDocKey(mention)),
value: { kind: "mention" as const, mention },