From 5d533f0cbf671c53a03c8028d5edb70753aeef81 Mon Sep 17 00:00:00 2001 From: dohyeons Date: Thu, 30 Oct 2025 15:47:17 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A0=88=EC=A7=80=EC=8A=A4=ED=8A=B8=EB=A6=AC?= =?UTF-8?q?=20=EB=A1=9C=EB=94=A9=20=EC=95=88=EB=82=B4=EB=AC=B8=EA=B5=AC=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/app/registry-provider.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/frontend/app/registry-provider.tsx b/frontend/app/registry-provider.tsx index 95ac64a0..0be1d572 100644 --- a/frontend/app/registry-provider.tsx +++ b/frontend/app/registry-provider.tsx @@ -26,16 +26,16 @@ export function RegistryProvider({ children }: RegistryProviderProps) { }, []); // 초기화 중 로딩 표시 (선택사항) - if (!isInitialized) { - return ( -
-
-
-

시스템 초기화 중...

-
-
- ); - } + // if (!isInitialized) { + // return ( + //
+ //
+ //
+ //

시스템 초기화 중...

+ //
+ //
+ // ); + // } return <>{children}; }