Implement quick title suggestions

Implement suggestions for transaction titles based on category selection.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-22 06:50:36 +00:00
parent 508eea9cde
commit 78451e30e5
3 changed files with 71 additions and 2 deletions

View File

@@ -35,3 +35,11 @@ export const DEFAULT_CATEGORY_BUDGETS = {
// 기본 월간 예산
export const DEFAULT_MONTHLY_BUDGET = 1300000;
// 카테고리별 대표 제목 목록 정의
export const CATEGORY_TITLE_SUGGESTIONS: Record<string, string[]> = {
: ['점심', '저녁', '음료', '간식', '아침', '외식'],
: ['의류', '생활용품', '운동용품', '가전제품', '화장품'],
: ['택시', '주유', '버스', '지하철', '교통카드', '주차'],
: ['구독', '관리비', '전기요금', '통신비', '의료비', '취미']
};