mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-01-25 02:08:11 +00:00
fix(ui): change default pagination page size to 10
This commit is contained in:
@@ -39,7 +39,7 @@ export function DataTablePagination({
|
||||
const pathname = usePathname();
|
||||
const searchParams = useSearchParams();
|
||||
const router = useRouter();
|
||||
const initialPageSize = searchParams.get("pageSize") ?? "50";
|
||||
const initialPageSize = searchParams.get("pageSize") ?? "10";
|
||||
|
||||
const [selectedPageSize, setSelectedPageSize] = useState(initialPageSize);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user