Merge branch 'feature/screen-management' of http://39.117.244.52:3000/kjs/ERP-node into feature/screen-management

This commit is contained in:
kjs
2025-10-30 18:31:09 +09:00
3 changed files with 14 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}</>;
}