We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f07c55 commit f64dea9Copy full SHA for f64dea9
1 file changed
vite-app/src/components/EvaluationTable.tsx
@@ -51,10 +51,6 @@ export const EvaluationTable = observer(() => {
51
state.updateTableFilterConfig(filters);
52
};
53
54
- const resetFilters = () => {
55
- state.resetTableFilterConfig();
56
- };
57
-
58
return (
59
<div className="bg-white border border-gray-200">
60
{/* Filter Controls */}
@@ -75,14 +71,6 @@ export const EvaluationTable = observer(() => {
75
71
)}
76
72
</div>
77
73
78
- <Button
79
- onClick={resetFilters}
80
- size="sm"
81
- variant="secondary"
82
- disabled={state.tableFilterConfig.length === 0}
83
- >
84
- Reset Filters
85
- </Button>
86
74
87
<div className="bg-white rounded-lg p-4">
88
<FilterSelector
0 commit comments