removing a console.log that I left behind

This commit is contained in:
Stephen Boettcher 2026-03-09 10:10:08 -04:00
parent 78e19d95e6
commit d69a36e1ba

View file

@ -58,7 +58,6 @@ const filterTypePredicates = {
},
[filterTypes.IS_EMPTY]: function(itemValue, filterValue) {
console.log('isEmpty', { itemValue });
if (itemValue === null || itemValue === undefined) {
return true;
}