Fix budget calculation error

Corrected an issue where the total monthly budget was incorrectly calculated and displayed as a weekly budget.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-22 11:16:30 +00:00
parent 5f125de8d7
commit b81187a4d8
3 changed files with 11 additions and 3 deletions

View File

@@ -48,6 +48,11 @@ const BudgetTabContent: React.FC<BudgetTabContentProps> = ({
onSaveBudget
});
// 월간 예산 모드를 명시적으로 로깅
React.useEffect(() => {
console.log('BudgetTabContent 렌더링: 월간 예산 모드');
}, []);
return (
<div>
{isBudgetSet ? (