🐛 fix typecheck and cleanup imports
tinyedge/deploy Deployed by TinyEdge

This commit is contained in:
2026-08-07 12:57:45 +02:00
parent c6b78d4665
commit 67727f96ab
17 changed files with 1790 additions and 1352 deletions
+2 -2
View File
@@ -44,8 +44,8 @@ function simplifyDebts(netBalances: Record<ParticipantId, number>): Settlement[]
let di = 0
while (ci < creditors.length && di < debtors.length) {
const creditor = creditors[ci]
const debtor = debtors[di]
const creditor = creditors[ci]!
const debtor = debtors[di]!
const amount = Math.min(creditor.amount, debtor.amount)
if (amount > 0) {