diff --git a/apps/dashboard/app/(app)/audit/components/filters/filter.tsx b/apps/dashboard/app/(app)/audit/components/filters/filter.tsx index 58b1dd471..d9f52c7a2 100644 --- a/apps/dashboard/app/(app)/audit/components/filters/filter.tsx +++ b/apps/dashboard/app/(app)/audit/components/filters/filter.tsx @@ -81,7 +81,8 @@ export const Filter: React.FC = ({ options, title, param }) => { {options.map((option) => { const isSelected = selected.includes(option.value); return ( -
handleSelection(option.value, isSelected)} onKeyDown={(e) => { @@ -92,6 +93,7 @@ export const Filter: React.FC = ({ options, title, param }) => { }} > { const next = isSelected ? selected.filter((v) => v !== option.value) @@ -111,7 +113,7 @@ export const Filter: React.FC = ({ options, title, param }) => {
{option.label} - + ); })}