diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx index a94cd613..ba067c97 100644 --- a/frontend/app/layout.tsx +++ b/frontend/app/layout.tsx @@ -45,9 +45,9 @@ export default function RootLayout({
{children} + + - -
diff --git a/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx b/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx index 7d87a4a9..23001fd2 100644 --- a/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx +++ b/frontend/lib/registry/components/select-basic/SelectBasicComponent.tsx @@ -58,11 +58,6 @@ const SelectBasicComponent: React.FC = ({ timestamp: new Date().toISOString(), }); - // 브라우저 알림으로도 확인 - if (typeof window !== "undefined" && !(window as any).selectBasicAlerted) { - (window as any).selectBasicAlerted = true; - alert("SelectBasicComponent가 실행되었습니다!"); - } const [isOpen, setIsOpen] = useState(false); // webTypeConfig 또는 componentConfig 사용 (DynamicWebTypeRenderer 호환성) @@ -164,7 +159,6 @@ const SelectBasicComponent: React.FC = ({ // - 중복 요청 방지: 동일한 queryKey에 대해 자동 중복 제거 // - 상태 동기화: 모든 컴포넌트가 같은 캐시 공유 - // 선택된 값에 따른 라벨 업데이트 useEffect(() => { const getAllOptions = () => {