From 02f7c3258b62970ce79716f75d15467a96565054 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sat, 13 Sep 2025 18:39:32 +0400 Subject: [PATCH] refac --- .../channel/MessageInput/MentionList.svelte | 33 ++++++++++--------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/src/lib/components/channel/MessageInput/MentionList.svelte b/src/lib/components/channel/MessageInput/MentionList.svelte index d84c89e6cb..9f6526852a 100644 --- a/src/lib/components/channel/MessageInput/MentionList.svelte +++ b/src/lib/components/channel/MessageInput/MentionList.svelte @@ -3,6 +3,7 @@ const i18n = getContext('i18n'); import { models } from '$lib/stores'; + import Tooltip from '$lib/components/common/Tooltip.svelte'; export let query = ''; export let command: (payload: { id: string; label: string }) => void; @@ -60,21 +61,23 @@ {$i18n.t('Models')} {#each filteredItems as item, i} - + + + {/each}