aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/balances.ts
diff options
context:
space:
mode:
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]