diff --git a/apps/dashboard/app/(app)/audit/components/filters/filter.tsx b/apps/dashboard/app/(app)/audit/components/filters/filter.tsx index 58b1dd4713..3bddefbfaa 100644 --- a/apps/dashboard/app/(app)/audit/components/filters/filter.tsx +++ b/apps/dashboard/app/(app)/audit/components/filters/filter.tsx @@ -81,7 +81,7 @@ export const Filter: React.FC = ({ options, title, param }) => { {options.map((option) => { const isSelected = selected.includes(option.value); return ( -
handleSelection(option.value, isSelected)} onKeyDown={(e) => { @@ -111,7 +111,7 @@ export const Filter: React.FC = ({ options, title, param }) => {
{option.label} - + ); })}