The file /Users/neog/Apps/macOS/NEOG-Finance/Sources/NEOGFinance/Views/Debts/DebtsView.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 346→ .padding() 347→ .frame(width: 400, height: 500) 348→ } 349→ 350→ private func saveDebt() { 351→ guard let validAmount = parsedAmount, validAmount > 0 else { return } 352→ 353→ let debt = Debt( 354→ name: name, 355→ amount: validAmount, 356→ creditor: creditor, 357→ dueDate: hasDueDate ? dueDate : nil, 358→ interestRate: Double(interestRate.replacingOccurrences(of: ",", with: ".")), 359→ notes: notes,