Remove a stray Println from expenseForm.MustFillFromDatabase

This commit is contained in:
jordi fita mas 2024-08-07 00:47:34 +02:00
parent c3fa23727f
commit f546632a89
1 changed files with 0 additions and 1 deletions

View File

@ -421,7 +421,6 @@ func (form *expenseForm) MustFillFromDatabase(ctx context.Context, conn *Conn, s
if len(form.Tax.Selected) == 1 && form.Tax.Selected[0] == "" { if len(form.Tax.Selected) == 1 && form.Tax.Selected[0] == "" {
form.Tax.Selected = nil form.Tax.Selected = nil
} }
fmt.Println(form.Tax.Selected)
return true return true
} }
func HandleUpdateExpense(w http.ResponseWriter, r *http.Request, params httprouter.Params) { func HandleUpdateExpense(w http.ResponseWriter, r *http.Request, params httprouter.Params) {