Skip to content

Commit

Permalink
Update libs/report/committers/src/lib/parse-monthly.ts
Browse files Browse the repository at this point in the history
Co-authored-by: George Kalpakas <[email protected]>
  • Loading branch information
marco-ippolito and gkalpak authored Dec 16, 2024
1 parent 7832378 commit d33a5ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/report/committers/src/lib/parse-monthly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function convertToUTC(date: Date): Date {
}

function monthlyDataHumanReadable(data: MonthlyData) {
const totalCommits = Object.values(data.committers).reduce((sum, count) => sum + count, 0);
const totalCommits = Object.values(data.committers).reduce((sum, count) => sum + count);
return {
month: data.month,
start: format(data.start, 'yyyy-MM-dd'),
Expand Down

0 comments on commit d33a5ad

Please sign in to comment.