diff --git a/apps/ui/src/routes/__root.tsx b/apps/ui/src/routes/__root.tsx index 3af374f0..34dbd00e 100644 --- a/apps/ui/src/routes/__root.tsx +++ b/apps/ui/src/routes/__root.tsx @@ -23,6 +23,7 @@ import { Toaster } from 'sonner'; import { ThemeOption, themeOptions } from '@/config/theme-options'; import { SandboxRiskDialog } from '@/components/dialogs/sandbox-risk-dialog'; import { SandboxRejectionScreen } from '@/components/dialogs/sandbox-rejection-screen'; +import { LoadingState } from '@/components/ui/loading-state'; const logger = createLogger('RootLayout'); @@ -330,7 +331,7 @@ function RootLayoutContent() { if (sandboxStatus === 'pending') { return (
-
Checking environment...
+
); } @@ -354,7 +355,7 @@ function RootLayoutContent() { if (!isElectronMode() && !authChecked) { return (
-
Loading...
+
); } @@ -364,7 +365,7 @@ function RootLayoutContent() { if (!isElectronMode() && !isAuthenticated) { return (
-
Redirecting to login...
+
); }