Skip to content

Commit

Permalink
fix bigint conversion error
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscao633 committed Jun 17, 2024
1 parent 263e92c commit 9aff134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/queries/analytics/reports/getJourney.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,6 @@ function combineSequentialDuplicates(array: any) {
function parseResult(data: any) {
return data.map(({ e1, e2, e3, e4, e5, e6, e7, count }) => ({
items: combineSequentialDuplicates([e1, e2, e3, e4, e5, e6, e7]),
count: +count,
count: +Number(count),
}));
}

0 comments on commit 9aff134

Please sign in to comment.