Skip to content

Commit

Permalink
add includeCountry logic to results
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscao633 committed Oct 11, 2023
1 parent 5f0ac23 commit 49acf2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/queries/analytics/sessions/getSessionMetrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ async function clickhouseQuery(
params,
).then(a => {
return Object.values(a).map(a => {
return { x: a.x, y: Number(a.y) };
return { x: a.x, y: Number(a.y), country: a.country };
});
});
}

0 comments on commit 49acf2e

Please sign in to comment.