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