From feaabd7c2a52e04637962714b855be45583d493e Mon Sep 17 00:00:00 2001 From: Jin Yi Date: Sun, 31 Aug 2025 09:39:24 +0900 Subject: [PATCH] fix: type any to MultiSelectPassThroughMethodOptions --- src/components/input/MultiSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/MultiSelect.vue b/src/components/input/MultiSelect.vue index 485ee927c..2252f321e 100644 --- a/src/components/input/MultiSelect.vue +++ b/src/components/input/MultiSelect.vue @@ -165,7 +165,7 @@ const pt = computed(() => ({ class: 'flex flex-col gap-1 p-0 list-none border-none text-xs' }, // Option row hover and focus tone - option: ({ context }: any) => ({ + option: ({ context }: MultiSelectPassThroughMethodOptions) => ({ class: [ 'flex gap-1 items-center p-2', 'hover:bg-neutral-100/50 dark-theme:hover:bg-zinc-700/50',