fix(ui/sortable-list): remove 1 as page size option [BE-12900] (#2469)

This commit is contained in:
Chaim Lev-Ari
2026-04-27 17:01:12 +03:00
committed by GitHub
parent 24a879add6
commit 3f8fcb3914
@@ -1,6 +1,6 @@
import clsx from 'clsx';
const PAGE_SIZE_OPTIONS = [1, 10, 25, 50, 100] as const;
const PAGE_SIZE_OPTIONS = [10, 25, 50, 100] as const;
interface Props {
page: number;