fix(api): align list defaults with backend page limits
This commit is contained in:
+1
-1
@@ -20,7 +20,7 @@ type ListOptions = {
|
||||
|
||||
function withOffsetLimit(path: string, options?: ListOptions): string {
|
||||
const offset = options?.offset ?? 0
|
||||
const limit = options?.limit ?? 1000
|
||||
const limit = options?.limit ?? 100
|
||||
const searchParams = new URLSearchParams({
|
||||
offset: String(offset),
|
||||
limit: String(limit),
|
||||
|
||||
Reference in New Issue
Block a user