From 4239f50129e29b9dfab2b8a97fb74f4122287990 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 9 Oct 2025 16:24:32 +0100 Subject: [PATCH] fix(highlights): include local relays in relay indicator tooltip Remove filter that excluded local relays from the fallback tooltip - now shows all configured relays including localhost --- src/components/HighlightItem.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/HighlightItem.tsx b/src/components/HighlightItem.tsx index 1bae179c..1a3e2e28 100644 --- a/src/components/HighlightItem.tsx +++ b/src/components/HighlightItem.tsx @@ -201,9 +201,8 @@ export const HighlightItem: React.FC = ({ } } - // Fallback: show remote relays we queried (where this was likely fetched from) - const remoteRelays = RELAYS.filter(url => !isLocalRelay(url)) - const relayNames = remoteRelays.map(url => + // Fallback: show all relays we queried (where this was likely fetched from) + const relayNames = RELAYS.map(url => url.replace(/^wss?:\/\//, '').replace(/\/$/, '') ) return {