From 19b0491714d1c75bd1d2ff0ce9a4167f33a31d2e Mon Sep 17 00:00:00 2001 From: highperfocused Date: Sat, 27 Dec 2025 23:05:18 +0100 Subject: [PATCH] Update theme configuration to 'system' and streamline relay URLs in App component --- src/App.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 79d6461..cb38f26 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -32,12 +32,10 @@ const queryClient = new QueryClient({ }); const defaultConfig: AppConfig = { - theme: "light", + theme: "system", relayMetadata: { relays: [ - { url: 'wss://relay.ditto.pub', read: true, write: true }, - { url: 'wss://relay.nostr.band', read: true, write: true }, - { url: 'wss://relay.damus.io', read: true, write: true }, + { url: 'wss://relay.layer.systems', read: true, write: true }, ], updatedAt: 0, },