Skip to content

Commit

Permalink
Bump the page size (#6354)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericpgreen2 authored Jan 7, 2025
1 parent 093fe58 commit a9bf7a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web-admin/src/features/projects/ProjectCards.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
export let organization: string;
$: projs = createAdminServiceListProjectsForOrganization(organization);
$: projs = createAdminServiceListProjectsForOrganization(organization, {
pageSize: 1000,
});
</script>

<div class="flex flex-col gap-y-4">
Expand Down

1 comment on commit a9bf7a4

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.