Skip to content

Commit

Permalink
Remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
emillub committed Jan 7, 2025
1 parent e38b74b commit e03ae55
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions app/components/Table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,7 @@ const Table = <T extends { id: EntityId }>({
if (typeof filters[key] === 'boolean') {
return filters[key] === get(item, index);
}
console.log(
filters[key],
get(item, index),
filterMapping(get(item, index) ?? ''),
);

return filters[key]?.some((arrayFilter) =>
String(filterMapping(get(item, index) ?? ''))
.toLowerCase()
Expand Down

0 comments on commit e03ae55

Please sign in to comment.