From 3e65109900deea032b9c8921946fde8626cc188d Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sun, 14 Sep 2025 19:00:49 -0400 Subject: [PATCH] refac --- src/lib/components/channel/MessageInput/MentionList.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/channel/MessageInput/MentionList.svelte b/src/lib/components/channel/MessageInput/MentionList.svelte index 330ea01fdb..48fbdb5db7 100644 --- a/src/lib/components/channel/MessageInput/MentionList.svelte +++ b/src/lib/components/channel/MessageInput/MentionList.svelte @@ -15,7 +15,7 @@ const select = (index: number) => { const item = filteredItems[index]; - // Add the "A:" prefix to the id to indicate it's an assistant model + // Add the "A:" prefix to the id to indicate it's an agent/assistant/ai model if (item) command({ id: `A:${item.id}|${item.name}`, label: item.name }); };