style: fix linter warning

This commit is contained in:
Tom French 2022-05-20 15:18:42 +01:00 committed by James Long
parent 5451cfae32
commit 55044de921

View file

@ -377,7 +377,7 @@ export function triggerBudgetChanges(oldValues, newValues) {
export async function doTransfer(categoryIds, transferId) {
let { createdMonths: months } = sheet.get().meta();
[...months].map(month => {
[...months].forEach(month => {
let totalValue = categoryIds
.map(id => {
return budgetActions.getBudget({ month, category: id });