diff --git a/apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx b/apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx index 105ca00497c..b1a975fd7a9 100644 --- a/apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx +++ b/apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx @@ -21,7 +21,7 @@ import { } from "@/registry/new-york/ui/popover" import { Separator } from "@/registry/new-york/ui/separator" -interface DataTableFacetedFilter { +interface DataTableFacetedFilterProps { column?: Column title?: string options: { @@ -35,7 +35,7 @@ export function DataTableFacetedFilter({ column, title, options, -}: DataTableFacetedFilter) { +}: DataTableFacetedFilterProps) { const facets = column?.getFacetedUniqueValues() const selectedValues = new Set(column?.getFilterValue() as string[])