From 76d1d4544e5cc9e945fbea41ed8fbb7f4df3b860 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 9 Oct 2025 20:17:29 +0100 Subject: [PATCH] feat: extend connecting state to 8 seconds and remove subtitle text - Increase 'Connecting' timeout from 4 to 8 seconds - Remove explanatory subtitle 'Establishing connections...' - Cleaner, simpler connecting state display --- src/components/RelayStatusIndicator.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/components/RelayStatusIndicator.tsx b/src/components/RelayStatusIndicator.tsx index 918dd79c..c14df77a 100644 --- a/src/components/RelayStatusIndicator.tsx +++ b/src/components/RelayStatusIndicator.tsx @@ -32,11 +32,11 @@ export const RelayStatusIndicator: React.FC = ({ rela // Connected! Stop showing connecting state setIsConnecting(false) } else { - // No connections yet - show connecting for 4 seconds + // No connections yet - show connecting for 8 seconds setIsConnecting(true) const timeout = setTimeout(() => { setIsConnecting(false) - }, 4000) + }, 8000) return () => clearTimeout(timeout) } }, [connectedUrls.length]) @@ -70,10 +70,7 @@ export const RelayStatusIndicator: React.FC = ({ rela
{isConnecting ? ( - <> - Connecting - Establishing connections... - + Connecting ) : offlineMode ? ( <> Offline