We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4722ed4 commit a374f31Copy full SHA for a374f31
src/api/posthogClient.ts
@@ -59,7 +59,9 @@ export class PostHogAPIClient {
59
60
async getTasks(repositoryOrg?: string, repositoryName?: string) {
61
const teamId = await this.getTeamId();
62
- const params: Record<string, string> = {};
+ const params: Record<string, string | number> = {
63
+ limit: 500,
64
+ };
65
66
if (repositoryOrg && repositoryName) {
67
params.repository_config__organization = repositoryOrg;
0 commit comments