From a240b40ae2f427a6632c30b2efebb409e144a569 Mon Sep 17 00:00:00 2001 From: zfurtak Date: Mon, 23 Sep 2024 12:39:07 +0100 Subject: [PATCH] Fixed performance tests --- tests/perf-test/SelectionList.perf-test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/perf-test/SelectionList.perf-test.tsx b/tests/perf-test/SelectionList.perf-test.tsx index 6862212d3c75..5e0274cfa82f 100644 --- a/tests/perf-test/SelectionList.perf-test.tsx +++ b/tests/perf-test/SelectionList.perf-test.tsx @@ -81,7 +81,7 @@ function SelectionListWrapper({canSelectMultiple}: SelectionListWrapperProps) { const sections = [ { - data: Array.from({length: 1000}, (element, index) => ({ + data: Array.from({length: 500}, (element, index) => ({ text: `Item ${index}`, keyForList: `item-${index}`, isSelected: selectedIds.includes(`item-${index}`),