Limit expense categories

Limit the number of expense categories to 식비, 생활비, 교통비.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 02:41:56 +00:00
parent b39ff34101
commit fff17903e4
4 changed files with 31 additions and 35 deletions

View File

@@ -19,14 +19,14 @@ const Index = () => {
title: '식료품 구매',
amount: 25000,
date: '오늘, 12:30 PM',
category: 'shopping',
category: '식비',
type: 'expense'
}, {
id: '2',
title: '주유소',
amount: 50000,
date: '어제, 3:45 PM',
category: 'transportation',
category: '교통비',
type: 'expense'
}, {
id: '3',
@@ -56,6 +56,7 @@ const Index = () => {
}
});
// Updated to only use the three specified categories
const categories = [
{ title: '식비', current: 240000, total: 400000 },
{ title: '생활비', current: 350000, total: 600000 },