function filterBySurface()

in app/columns.tsx [229:239]


function filterBySurface(
  row: Row<RecipeOrBranchInfo>,
  filterValue: string,
): boolean {
  if (row.original.surface) {
    return row.original.surface
      .toLowerCase()
      .includes(filterValue.toLowerCase());
  }
  return false;
}