Fix budget display and category issues

- Fix budget amount not displaying outside the homepage.
- Remove unexpected categories and revert to the original 3 categories.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-16 08:17:02 +00:00
parent 32a6832b84
commit 79d38f1fc1
5 changed files with 50 additions and 14 deletions

View File

@@ -6,7 +6,7 @@ import { UseFormReturn } from 'react-hook-form';
import { z } from 'zod';
import { categoryIcons, EXPENSE_CATEGORIES } from '@/constants/categoryIcons';
// Form schema for validation - 카테고리를 3개로 축소
// Form schema for validation - 카테고리를 3개로 제한
export const transactionFormSchema = z.object({
title: z.string().min(1, '제목을 입력해주세요'),
amount: z.string().min(1, '금액을 입력해주세요'),