From c2ff2a990f6836b797d045d86f19a7dd3e9b3570 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 2 Jun 2025 22:13:22 -0500 Subject: [PATCH] Reorder relays --- src/components/AppProvider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AppProvider.ts b/src/components/AppProvider.ts index 82f7fb3..ee74f9e 100644 --- a/src/components/AppProvider.ts +++ b/src/components/AppProvider.ts @@ -14,9 +14,9 @@ interface RelayInfo { // Available relay options export const RELAY_OPTIONS: RelayInfo[] = [ - { url: 'wss://relay.damus.io', name: 'Damus' }, { url: 'wss://ditto.pub/relay', name: 'Ditto' }, { url: 'wss://relay.nostr.band', name: 'Nostr.Band' }, + { url: 'wss://relay.damus.io', name: 'Damus' }, { url: 'wss://relay.primal.net', name: 'Primal' }, ];