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: 272→ @State private var dueDate = Date() 273→ @State private var interestRate = "" 274→ @State private var notes = "" 275→ @State private var isRecurring = false 276→ @State private var recurringAmount = "" 277→ @State private var totalInstallments = "" 278→ 279→ // MARK: - Validation 280→ private var parsedAmount: Double? { 281→ Double(amount.replacingOccurrences(of: ",", with: ".")) 282→ } 283→ 284→ private var isAmountValid: Bool { 285→ guard let value = parsedAmount else { return false } 286→ return value > 0 287→ } 288→ 289→ private var canSave: Bool { 290→ !name.isEmpty && isAmountValid 291→ } 292→ 293→ var body: some View { 294→ VStack(spacing: 20) { 295→ Text("Nova Divida") 296→ .font(.title2) 297→ .fontWeight(.bold)