From 05de2ccbd7fb7e69d029e2b893921b9709b07a51 Mon Sep 17 00:00:00 2001 From: Kristina Durivage Date: Mon, 29 Dec 2025 19:23:28 -0600 Subject: [PATCH] move back to reasonable number --- public/app/features/correlations/CorrelationsPageWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/correlations/CorrelationsPageWrapper.tsx b/public/app/features/correlations/CorrelationsPageWrapper.tsx index a06c3609fc7..32a81e4ec1e 100644 --- a/public/app/features/correlations/CorrelationsPageWrapper.tsx +++ b/public/app/features/correlations/CorrelationsPageWrapper.tsx @@ -24,7 +24,7 @@ export function CorrelationsPageLegacy() { function CorrelationsPageAppPlatform() { const [page, setPage] = useState(1); let totalItems = useRef(0); - const limit = 10; + const limit = 100; const { currentData, isLoading, error, remainingItems, doesContinue } = useCorrelationsK8s(limit, page); const [deleteCorrelation] = useDeleteCorrelationMutation(); if (page === 1) {