diff --git a/src/utils/enrichers.ts b/src/utils/enrichers.ts index c1ebb28b..eea91111 100644 --- a/src/utils/enrichers.ts +++ b/src/utils/enrichers.ts @@ -64,7 +64,7 @@ export const fillSingleProject = async (props: ProjectScopeProps) => { if (props.projectId) { return props; } - const { data } = await props.apiClient.listProjects({}); + const { data } = await props.apiClient.listProjects({ limit: 2 }); if (data.projects.length === 0) { throw new Error('No projects found'); }