Skip to content

Commit 6f42d83

Browse files
authored
fix: show more tasks (#150)
1 parent d7c1442 commit 6f42d83

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/api/posthogClient.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ export class PostHogAPIClient {
5959

6060
async getTasks(repositoryOrg?: string, repositoryName?: string) {
6161
const teamId = await this.getTeamId();
62-
const params: Record<string, string> = {};
62+
const params: Record<string, string | number> = {
63+
limit: 500,
64+
};
6365

6466
if (repositoryOrg && repositoryName) {
6567
params.repository_config__organization = repositoryOrg;

0 commit comments

Comments
 (0)