에러 해결

This commit is contained in:
dohyeons 2025-09-29 18:44:16 +09:00
parent 66395c9cc5
commit 6e3d5b40d2
2 changed files with 2 additions and 8 deletions

View File

@ -45,9 +45,9 @@ export default function RootLayout({
<div id="root" className="h-full">
<QueryProvider>
<RegistryProvider>{children}</RegistryProvider>
<Toaster position="top-right" richColors />
<ScreenModal />
</QueryProvider>
<Toaster position="top-right" richColors />
<ScreenModal />
</div>
</body>
</html>

View File

@ -58,11 +58,6 @@ const SelectBasicComponent: React.FC<SelectBasicComponentProps> = ({
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<SelectBasicComponentProps> = ({
// - 중복 요청 방지: 동일한 queryKey에 대해 자동 중복 제거
// - 상태 동기화: 모든 컴포넌트가 같은 캐시 공유
// 선택된 값에 따른 라벨 업데이트
useEffect(() => {
const getAllOptions = () => {