fix(CategoryFilter): fix toggle behavior
This commit is contained in:
@@ -5,7 +5,7 @@ import { categoryFilterStore } from '../store/categoryFilterStore';
|
||||
const { categories } = $derived($categoryFilterStore);
|
||||
|
||||
function didCategoryToggle(categoryId: string) {
|
||||
if (categories?.find(category => category.id === categoryId)) {
|
||||
if (categories?.find(category => category.id === categoryId)?.selected) {
|
||||
categoryFilterStore.deselectCategory(categoryId);
|
||||
} else {
|
||||
categoryFilterStore.selectCategory(categoryId);
|
||||
|
||||
Reference in New Issue
Block a user