레지스트리 로딩 안내문구 삭제

This commit is contained in:
dohyeons 2025-10-30 15:47:17 +09:00
parent 101db2dfa2
commit 5d533f0cbf
1 changed files with 10 additions and 10 deletions

View File

@ -26,16 +26,16 @@ export function RegistryProvider({ children }: RegistryProviderProps) {
}, []);
// 초기화 중 로딩 표시 (선택사항)
if (!isInitialized) {
return (
<div className="flex min-h-screen items-center justify-center">
<div className="flex flex-col items-center space-y-4">
<div className="border-primary h-12 w-12 animate-spin rounded-full border-b-2"></div>
<p className="text-muted-foreground text-sm"> ...</p>
</div>
</div>
);
}
// if (!isInitialized) {
// return (
// <div className="flex min-h-screen items-center justify-center">
// <div className="flex flex-col items-center space-y-4">
// <div className="border-primary h-12 w-12 animate-spin rounded-full border-b-2"></div>
// <p className="text-muted-foreground text-sm">시스템 초기화 중...</p>
// </div>
// </div>
// );
// }
return <>{children}</>;
}