The categoryName prop of DataToolbarFilter is used to display the category name in the chip. In the example below, the "Project" category (i.e., chip) is a localizable string.

When the chip is deleted, the same string is provided as the type variable to callback.

In the filterable table demo below, the type is converted using toLowerCase(). However, considering that this is a localizable label, we cannot use that approach to store filter values an array.

I don't want the localizable "Project" label here, but some ID (e.g., 'project'). (All my filter and menu options are based on IDs.) Perhaps a categoryID prop would be helpful here?