Skip to content

Commit 296de35

Browse files
committed
fix: only request max 200 by default
1 parent 6bee365 commit 296de35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/work-items/list-work-items/feature.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export async function listWorkItems(
5858
}
5959

6060
// Apply pagination in memory
61-
const { top, skip } = options;
61+
const { top = 200, skip } = options;
6262
if (skip !== undefined) {
6363
workItemRefs = workItemRefs.slice(skip);
6464
}

0 commit comments

Comments
 (0)