- {/* Select - FormField 예외 */}
-
+
+
updateItem(index, 'accountSubject', v)}
+ placeholder="선택"
+ size="sm"
+ />
+
{/* Select - FormField 예외 */}
diff --git a/src/components/accounting/CardTransactionInquiry/ManualInputModal.tsx b/src/components/accounting/CardTransactionInquiry/ManualInputModal.tsx
index d7af2fe0..121138fd 100644
--- a/src/components/accounting/CardTransactionInquiry/ManualInputModal.tsx
+++ b/src/components/accounting/CardTransactionInquiry/ManualInputModal.tsx
@@ -25,7 +25,8 @@ import {
} from '@/components/ui/select';
import { RadioGroup, RadioGroupItem } from '@/components/ui/radio-group';
import type { ManualInputFormData } from './types';
-import { DEDUCTION_OPTIONS, ACCOUNT_SUBJECT_OPTIONS } from './types';
+import { DEDUCTION_OPTIONS } from './types';
+import { AccountSubjectSelect } from '@/components/accounting/common';
import { getCardList, createCardTransaction } from './actions';
import { getTodayString } from '@/lib/utils/date';
@@ -254,20 +255,13 @@ export function ManualInputModal({ open, onOpenChange, onSuccess }: ManualInputM
-
+
+
handleChange('accountSubject', v)}
+ placeholder="선택"
+ />
+
diff --git a/src/components/accounting/CardTransactionInquiry/index.tsx b/src/components/accounting/CardTransactionInquiry/index.tsx
index 6357ef6d..0045157b 100644
--- a/src/components/accounting/CardTransactionInquiry/index.tsx
+++ b/src/components/accounting/CardTransactionInquiry/index.tsx
@@ -42,6 +42,7 @@ import type { CardTransaction, InlineEditData, SortOption } from './types';
import {
SORT_OPTIONS, DEDUCTION_OPTIONS, ACCOUNT_SUBJECT_OPTIONS,
} from './types';
+import { AccountSubjectSelect } from '@/components/accounting/common';
import {
getCardTransactionList,
getCardTransactionSummary,
@@ -599,20 +600,13 @@ export function CardTransactionInquiry() {
{/* 계정과목 (인라인 Select) */}