이력테이블 기준 컬럼 설정 기능

This commit is contained in:
kjs
2025-10-27 11:41:30 +09:00
parent 5fdefffd26
commit a3bfcdf2d8
15 changed files with 26 additions and 379 deletions

View File

@@ -96,10 +96,7 @@ export function createComponentDefinition(options: CreateComponentDefinitionOpti
throw new Error(`컴포넌트 정의 검증 실패: ${validationResult.errors.join(", ")}`);
}
// 경고사항 출력 (개발 모드에서만)
if (process.env.NODE_ENV === "development" && validationResult.warnings.length > 0) {
console.warn(`⚠️ 컴포넌트 정의 경고 (${id}):`, validationResult.warnings);
}
// 경고사항 출력 (개발 모드에서만) - 로그 제거
return definition;
}