Show unset daily/weekly budget

The daily and weekly budget values now display "설정되지 않음" when they are not set.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-22 07:45:24 +00:00
parent 0d716d79d2
commit 9e5406afff
3 changed files with 29 additions and 20 deletions

View File

@@ -27,10 +27,12 @@ export const useExtendedBudgetUpdate = (
const totalAmount = Object.values(newCategoryBudgets).reduce((sum, val) => sum + val, 0);
console.log('카테고리 총액:', totalAmount);
// 월간 예산 금액으로 예산 데이터 업데이트 (type에 관계없이 월간으로 처리)
// 월간 예산 금액으로 예산 데이터 업데이트
// 월간 예산을 설정하면 자동으로 일간/주간 예산도 계산되도록 수정
handleBudgetGoalUpdate('monthly', totalAmount);
} else {
// 카테고리 예산이 없는 경우, 선택된 기간 유형에 따라 예산 설정
// 카테고리 예산이 없는 경우, 선택된 기간 유형에 맞게 예산 설정
// 이 경우에도 다른 기간의 예산이 자동으로 계산됨
handleBudgetGoalUpdate(type, amount);
}
}, [categoryBudgets, handleBudgetGoalUpdate, updateCategoryBudgets]);