fix: Round average monthly budget to two decimal places

This commit is contained in:
Josh Pigford
2025-02-06 14:35:42 -06:00
parent 842e37658c
commit 21dc4b80f3

View File

@@ -24,6 +24,6 @@ class BudgetingStats
.from(monthly_totals, :mt)
.pick("AVG(mt.total)")
result
result&.round(2)
end
end