Fix lint error from previous commit.

This commit is contained in:
Mattias Granlund 2023-09-11 16:02:15 +02:00
parent c1659054cf
commit 1d8fb151fa

View File

@ -91,7 +91,7 @@
function sumBranchLinesAddedRemoved(branch: Branch) {
const comitted = computedAddedRemoved(...branch.commits.flatMap((c) => c.files));
const uncomitted = computedAddedRemoved(...branch.files)
const uncomitted = computedAddedRemoved(...branch.files);
return {
added: comitted.added + uncomitted.added,