From fddc9a894269ef018d3c836ef7adb032317bfe2e Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Thu, 16 Oct 2025 21:16:33 +0200 Subject: [PATCH] Wait more before redirecting --- ui/src/components/ProtectedRoute.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]);