From b3b78b93855cbcfcf25b08112f76156e30b6b08a Mon Sep 17 00:00:00 2001 From: austinkelsay Date: Sun, 13 Oct 2024 14:14:17 -0500 Subject: [PATCH] fix typo --- src/context/NDKContext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/NDKContext.js b/src/context/NDKContext.js index 7a87965..956ad4e 100644 --- a/src/context/NDKContext.js +++ b/src/context/NDKContext.js @@ -6,7 +6,7 @@ import appConfig from "@/config/appConfig"; const NDKContext = createContext(null); -const readOnlyRelays = ["wss://nostr21.com/", "wss://nostr.wine/", "wss://yestr.me/", "wss://lightningrelay.com/", "wss://nostr.land/", "wss://us.nsotr.land", "wss://relay.keychat.io"]; +const readOnlyRelays = ["wss://nostr21.com/", "wss://nostr.wine/", "wss://yestr.me/", "wss://lightningrelay.com/", "wss://nostr.land/", "wss://us.nostr.land", "wss://relay.keychat.io"]; export const NDKProvider = ({ children }) => { const [ndk, setNdk] = useState(null);