From eee3ad6c0eb4816ffc4a0484af887e9ea73b7195 Mon Sep 17 00:00:00 2001 From: Hailey Date: Sun, 9 Jun 2024 17:03:11 -0700 Subject: [PATCH] set limit --- src/screens/StarterPack/Wizard/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index 118263850e..3596db06c9 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -56,7 +56,7 @@ export function Wizard({ const listUri = starterPack?.list?.uri - const {data} = useListMembersQuery(listUri) + const {data} = useListMembersQuery(listUri, 50) const profiles = data?.pages.flatMap(p => p.items.map(i => i.subject)) if (name && rkey && (!starterPack || (starterPack && listUri && !profiles))) {