fix: Fixed issue with duplicate filter_identifiers inside tabFilters

Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Erik Tiekstra
2025-04-03 05:50:35 +00:00
parent 4e36fecd6e
commit 0215c8428f
3 changed files with 94 additions and 83 deletions
@@ -13,6 +13,7 @@ import styles from "./tabFilters.module.css"
interface Filter {
identifier: string
label: string
iconIdentifier: string
}
interface TabFiltersProps {
@@ -50,7 +51,7 @@ export default function TabFilters({
})}
type="button"
>
<FilterIcon identifier={category.identifier} />
<FilterIcon identifier={category.iconIdentifier} />
{category.label}
</button>
</Typography>