diff --git a/src/components/ToolFilters.astro b/src/components/ToolFilters.astro index c26ecaf..99f6d6a 100644 --- a/src/components/ToolFilters.astro +++ b/src/components/ToolFilters.astro @@ -330,7 +330,7 @@ const sortedTags = Object.entries(tagFrequency) } // Tag filter - if (selectedTags.size > 0 && !Array.from(selectedTags).some(tag => tags.includes(tag))) { + if (selectedTags.size > 0 && !Array.from(selectedTags).every(tag => tags.includes(tag))) { return false; }