diff --git a/src/components/ui/fuzzy-search/FuzzySearch.vue b/src/components/ui/fuzzy-search/FuzzySearch.vue index 5de762b..871195d 100644 --- a/src/components/ui/fuzzy-search/FuzzySearch.vue +++ b/src/components/ui/fuzzy-search/FuzzySearch.vue @@ -29,7 +29,7 @@ interface Props { /** * Custom class for the search container */ - class?: string + class?: string | string[] /** * Whether the search input should be disabled */ @@ -58,7 +58,6 @@ const dataRef = computed(() => props.data) // Use the fuzzy search composable const { searchQuery, - results, filteredItems, isSearching, resultCount, @@ -90,7 +89,7 @@ watch(filteredItems, (items) => {