aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/balances.ts
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2023-12-06 20:21:26 -0500
committerSebastien Castiel <sebastien@castiel.me>2023-12-06 20:21:26 -0500
commit57899b0160385c53df4e43ef2fd12492e0dffb77 (patch)
tree83f616c406c2d37aec2250bb0c44fcb8d701c177 /src/lib/balances.ts
parent6ce2329f5ce20f8352e3ea15594f2532ab8a392c (diff)
Reimbursements
Diffstat (limited to 'src/lib/balances.ts')
-rw-r--r--src/lib/balances.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/balances.ts b/src/lib/balances.ts
index 54dea00..a53bd01 100644
--- a/src/lib/balances.ts
+++ b/src/lib/balances.ts
@@ -54,7 +54,6 @@ export function getSuggestedReimbursements(
([participantId, { total }]) => ({ participantId, total }),
)
balancesArray.sort((b1, b2) => b2.total - b1.total)
- console.log(balancesArray)
const reimbursements: Reimbursement[] = []
while (balancesArray.length > 1) {
const first = balancesArray[0]