Reorder expense categories

Reorder the expense categories in the add transaction dialog to 식비, 생활비, 교통비.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 03:22:31 +00:00
parent bf25c4f032
commit 2626e35924

View File

@@ -16,7 +16,7 @@ interface ExpenseFormValues {
category: string;
}
const EXPENSE_CATEGORIES = ['식비', '교통비', '생활비'];
const EXPENSE_CATEGORIES = ['식비', '생활비', '교통비'];
const AddTransactionButton = () => {
const [showExpenseDialog, setShowExpenseDialog] = useState(false);