Fix mistyped filter value in the admin's log table (#3952)

This commit is contained in:
mahmed2000
2024-10-10 08:05:05 -07:00
committed by GitHub
parent e59285d998
commit dd5a14cd1a
+1 -1
View File
@@ -53,7 +53,7 @@ export const LogTable: FC<LogTableProps> = ({ logs, initialPageSize }) => {
},
{
text: 'Error',
value: 'Error',
value: 'error',
},
],
onFilter: (level, row) => row.level.indexOf(level) === 0,