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 de5ba37 commit 16ec6f1Copy full SHA for 16ec6f1
src/packages/api_v1_sdk/apiv1_summary_count_service.ts
@@ -28,7 +28,7 @@ export class Apiv1SummaryCountService implements SummaryCountService {
28
searchParams.push(`end=${endDate.toISOString().split('T')[0]}`);
29
}
30
if (regions.length > 0) {
31
- searchParams.push(`engagement_region=${regions.join(',')}`);
+ regions.forEach(region => queries.push(`region=${region}`));
32
33
if (searchParams.length > 0) {
34
queries.push(`search=${encodeURIComponent(searchParams.join('&'))}`);
0 commit comments