diff --git a/client/src/app/components/FilterPanel/CheckboxFilterControl.tsx b/client/src/app/components/FilterPanel/CheckboxFilterControl.tsx index 4570c3c5..e9fcdead 100644 --- a/client/src/app/components/FilterPanel/CheckboxFilterControl.tsx +++ b/client/src/app/components/FilterPanel/CheckboxFilterControl.tsx @@ -59,7 +59,7 @@ export const CheckboxFilterControl = ({ return ( { filterCategories: FilterCategory[]; @@ -60,18 +60,18 @@ export const FilterPanel = ({ Clear all filters - - {filterCategories - .filter((filterCategory) => { - return ( - omitFilterCategoryKeys.find( - (categoryKey) => categoryKey === filterCategory.categoryKey - ) === undefined - ); - }) - .map((category) => { - return ( - + {filterCategories + .filter((filterCategory) => { + return ( + omitFilterCategoryKeys.find( + (categoryKey) => categoryKey === filterCategory.categoryKey + ) === undefined + ); + }) + .map((category) => { + return ( + + {category.title} @@ -89,9 +89,9 @@ export const FilterPanel = ({ /> - ); - })} - + + ); + })} );