Skip to content

Commit 13358aa

Browse files
committed
fix: use brackets instead of commas for array query params (#66)
1 parent bd758d3 commit 13358aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class Orb extends Core.APIClient {
148148
}
149149

150150
protected override stringifyQuery(query: Record<string, unknown>): string {
151-
return qs.stringify(query, { arrayFormat: 'comma' });
151+
return qs.stringify(query, { arrayFormat: 'brackets' });
152152
}
153153

154154
static Orb = this;

0 commit comments

Comments
 (0)