We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37466ca commit 3e873fdCopy full SHA for 3e873fd
src/shared/topcoder/challenges.service.ts
@@ -22,7 +22,7 @@ export class TopcoderChallengesService {
22
Object.entries(queryParams).forEach(([key, value]) => {
23
if (value !== undefined && value !== null) {
24
if (Array.isArray(value)) {
25
- value.forEach((v) => url.searchParams.append(key, v));
+ value.forEach((v) => url.searchParams.append(`${key}[]`, v));
26
} else {
27
url.searchParams.append(key, value.toString());
28
}
0 commit comments