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: 295→ Text("Nova Divida") 296→ .font(.title2) 297→ .fontWeight(.bold) 298→ 299→ Form { 300→ TextField("Nome da divida", text: $name) 301→ 302→ HStack { 303→ TextField("Valor (R$)", text: $amount) 304→ if !amount.isEmpty && !isAmountValid { 305→ Image(systemName: "exclamationmark.circle.fill") 306→ .foregroundColor(.red) 307→ .help("Digite um valor numerico valido maior que zero") 308→ } 309→ } 310→ 311→ TextField("Credor", text: $creditor) 312→ 313→ Toggle("Tem data de vencimento", isOn: $hasDueDate) 314→ if hasDueDate { 315→ DatePicker("Vencimento", selection: $dueDate, displayedComponents: .date)