From 7ab328abb505b70f46a1f810922d96c6199a471a Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Tue, 30 Sep 2025 15:16:06 -0600 Subject: [PATCH] update --- .../ui/inputs/MentionInput/MentionInput.stories.tsx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/apps/web/src/components/ui/inputs/MentionInput/MentionInput.stories.tsx b/apps/web/src/components/ui/inputs/MentionInput/MentionInput.stories.tsx index 8e62af0ed..b3afb878f 100644 --- a/apps/web/src/components/ui/inputs/MentionInput/MentionInput.stories.tsx +++ b/apps/web/src/components/ui/inputs/MentionInput/MentionInput.stories.tsx @@ -388,17 +388,7 @@ export const DynamicItems: Story = { () => createMentionSuggestionExtension({ trigger: '!', - items: ({ query }) => { - // This function is called each time suggestions are needed, - // so it will always get the current dynamicItems state - console.log( - 'Getting dynamic items for query:', - query, - 'Current items:', - dynamicItems.length - ); - return defaultQueryMentionsFilter(query, dynamicItems); - }, + items: dynamicItems, pillStyling: { className: () => { return 'bg-gradient-to-r from-purple-100 to-pink-100 border-purple-300 text-purple-700 hover:from-purple-200 hover:to-pink-200'; @@ -419,7 +409,6 @@ export const DynamicItems: Story = { return (