filterFn in column definition not being called

I have a column definition that looks like this:

 columnHelper.accessor("type", {
    header: t("type-grid-column-header", "Type"),
    size: 130,
    enableColumnFilter: true,
    filterFn: (row, columnId, filterValue) => {
      console.log(filterValue);
      return false;
    },
  }),


but the filterFn seems like it's being completely ignored and the console.log never gets called. What might be the issue here?
Was this page helpful?