From 9dfdafa116efa48c6dfeacf1a3b5417445809e73 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Mon, 8 May 2023 17:00:13 -0400 Subject: [PATCH] fix: Increase collection pagination limit to max, closes #5311 --- app/components/Sidebar/components/Collections.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app/components/Sidebar/components/Collections.tsx b/app/components/Sidebar/components/Collections.tsx index 3ff866957..8da3ac815 100644 --- a/app/components/Sidebar/components/Collections.tsx +++ b/app/components/Sidebar/components/Collections.tsx @@ -23,6 +23,13 @@ function Collections() { const { t } = useTranslation(); const orderedCollections = collections.orderedData; + const params = React.useMemo( + () => ({ + limit: 100, + }), + [] + ); + const [ { isCollectionDropping, isDraggingAnyCollection }, dropToReorderCollection, @@ -47,7 +54,7 @@ function Collections() { }