- 컴포넌트 등록을 useEffect → 즉시 실행으로 변경 (3개 컴포넌트) - entity-search-input tableName 검증 추가 (FE/BE) - DynamicComponentRenderer에서 componentConfig props 전달 수정 - EntitySearchModal key prop 경고 해결 - 불필요한 ScreenDesigner 렌더링 코드 제거 Fixes: 컴포넌트 미등록 에러, tableName undefined 500 에러, React key 경고
10 lines
299 B
TypeScript
10 lines
299 B
TypeScript
"use client";
|
|
|
|
import { ComponentRegistry } from "../../ComponentRegistry";
|
|
import { EntitySearchInputDefinition } from "./index";
|
|
|
|
// 파일 로드 시 즉시 등록
|
|
ComponentRegistry.registerComponent(EntitySearchInputDefinition);
|
|
console.log("✅ EntitySearchInput 컴포넌트 등록 완료");
|
|
|