fix: 1:1 문의 라우트 수정 및 빌드 오류 수정

- customer-center/inquiries → customer-center/qna 폴더명 변경
- InquiryManagement 컴포넌트 경로 참조 수정
- BadDebtDetail.tsx 중복 선언 오류 수정
- EditableTable 컴포넌트 추가

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
byeongcheolryu
2025-12-29 15:42:17 +09:00
parent 8af838ab55
commit c749c09dea
10 changed files with 340 additions and 17 deletions

View File

@@ -110,17 +110,6 @@ export function BadDebtDetail({ mode, recordId, initialData }: BadDebtDetailProp
},
});
// Daum 우편번호 서비스
const { openPostcode } = useDaumPostcode({
onComplete: (result) => {
setFormData(prev => ({
...prev,
zipCode: result.zonecode,
address1: result.address,
}));
},
});
// 다이얼로그 상태
const [showDeleteDialog, setShowDeleteDialog] = useState(false);
const [showSaveDialog, setShowSaveDialog] = useState(false);