Skip to content

Commit

Permalink
Increase amount of projects fetched for landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinez committed Dec 5, 2023
1 parent e0a5e37 commit 38d8807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/home/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export async function loadHomeRoute(): Promise<
> {
let projects: ProjectBaseUrl[] = [];
if (get(httpdStore).state !== "stopped") {
projects = (await api.project.getAll()).map(project => ({
projects = (await api.project.getAll({ perPage: 30 })).map(project => ({
project,
baseUrl: api.baseUrl,
}));
Expand Down

0 comments on commit 38d8807

Please sign in to comment.