diff --git a/ui/src/components/ProtectedRoute.tsx b/ui/src/components/ProtectedRoute.tsx index 014d7ec..4686f7f 100644 --- a/ui/src/components/ProtectedRoute.tsx +++ b/ui/src/components/ProtectedRoute.tsx @@ -16,7 +16,7 @@ export const ProtectedRoute = ({ fallback, shouldRedirectToCurrentPage }: Protec useEffect(() => { const timer = setTimeout(() => { setIsLoading(false); - }, 200); + }, 500); return () => clearTimeout(timer); }, [user, fallback]);