From 6e3d5b40d2fb42e344cf6efaea23908e1f1f936f Mon Sep 17 00:00:00 2001 From: dohyeons Date: Mon, 29 Sep 2025 18:44:16 +0900 Subject: [PATCH] =?UTF-8?q?=EC=97=90=EB=9F=AC=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/app/layout.tsx | 4 ++-- .../components/select-basic/SelectBasicComponent.tsx | 6 ------ 2 files changed, 2 insertions(+), 8 deletions(-) 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 = () => {