upper limit

This commit is contained in:
Matteo Rosati
2026-01-16 12:26:15 +01:00
parent 4ffbdc28bd
commit 6df84ac67e

View File

@@ -86,7 +86,7 @@ export function FilterControls({
<input
type="range"
min="10"
max="1000"
max="10000"
step="10"
value={localLimit}
onChange={(e) => setLocalLimit(parseInt((e.target as HTMLInputElement).value))}