Reverted to edit edt-8539f783-4c38-49ea-9c24-fdafcfaa7d4f: "Check iOS notch handling

Verify that the iOS notch handling feature is working correctly."
This commit is contained in:
gpt-engineer-app[bot]
2025-03-23 10:08:01 +00:00
parent 01e6f56f8a
commit abf8c6ae0c
3 changed files with 10 additions and 17 deletions

View File

@@ -30,18 +30,11 @@ const Index = () => {
</TabsList>
<TabsContent value="budget" className="focus-visible:outline-none">
<BudgetTabContent
data={budgetData.monthly}
formatCurrency={(amount) => `${amount.toLocaleString()}`}
calculatePercentage={(spent, target) => (target > 0 ? (spent / target) * 100 : 0)}
onSaveBudget={(amount, categoryBudgets) => {
/* 예산 저장 로직 */
}}
/>
<BudgetTabContent budgetData={budgetData.monthly} />
</TabsContent>
<TabsContent value="recent" className="focus-visible:outline-none">
<RecentTransactionsSection transactions={transactions} />
<RecentTransactionsSection />
</TabsContent>
</Tabs>
</div>