From 2626e359249a80e86dbd20224796fa4911500357 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 15 Mar 2025 03:22:31 +0000 Subject: [PATCH] Reorder expense categories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reorder the expense categories in the add transaction dialog to 식비, 생활비, 교통비. --- src/components/AddTransactionButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AddTransactionButton.tsx b/src/components/AddTransactionButton.tsx index c4e71f2..3b6cb4f 100644 --- a/src/components/AddTransactionButton.tsx +++ b/src/components/AddTransactionButton.tsx @@ -16,7 +16,7 @@ interface ExpenseFormValues { category: string; } -const EXPENSE_CATEGORIES = ['식비', '교통비', '생활비']; +const EXPENSE_CATEGORIES = ['식비', '생활비', '교통비']; const AddTransactionButton = () => { const [showExpenseDialog, setShowExpenseDialog] = useState(false);