Skip to content

Commit cee7884

Browse files
authored
Merge pull request #4129 from gputier/fix/website-select-page-size
fix: increase website selector dropdown limit from 10 to 100
2 parents f923208 + 72fb239 commit cee7884

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/input/WebsiteSelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function WebsiteSelect({
3131
const { user } = useLoginQuery();
3232
const { data, isLoading } = useUserWebsitesQuery(
3333
{ userId: user?.id, teamId },
34-
{ search, pageSize: 20, includeTeams },
34+
{ search, pageSize: 100, includeTeams },
3535
);
3636
const listItems: { id: string; name: string }[] = data?.data || [];
3737

0 commit comments

Comments
 (0)