diff --git a/server/budgeting.go b/server/budgeting.go index 9e0a7d1..8ab0cae 100644 --- a/server/budgeting.go +++ b/server/budgeting.go @@ -139,6 +139,11 @@ func (h *Handler) calculateBalances(budget postgres.Budget, month Month, categoriesWithBalance := []CategoryWithBalance{} moneyUsed := numeric.Zero() + categories = append(categories, postgres.GetCategoriesRow{ + Group: "Income", + Name: "No Category", + ID: uuid.UUID{}, + }) for i := range categories { cat := &categories[i] if cat.ID == budget.IncomeCategoryID {