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