From 5cf5bfbcde7187ab23b16cbaa458ce05532d1d56 Mon Sep 17 00:00:00 2001
From: Ren Amamiya <123083837+reyamir@users.noreply.github.com>
Date: Sat, 29 Apr 2023 10:38:52 +0700
Subject: [PATCH] minor updates
---
src/app/channel/components/messages/item.tsx | 2 +-
src/stores/constants.tsx | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/app/channel/components/messages/item.tsx b/src/app/channel/components/messages/item.tsx
index 7a968807..48b906f9 100644
--- a/src/app/channel/components/messages/item.tsx
+++ b/src/app/channel/components/messages/item.tsx
@@ -14,7 +14,7 @@ export default function ChannelMessageItem({ data }: { data: any }) {
- {data.hide ? [hided message] : content}
+ {data.hide ? [hided message] : content}
diff --git a/src/stores/constants.tsx b/src/stores/constants.tsx
index 81222042..3c733c17 100644
--- a/src/stores/constants.tsx
+++ b/src/stores/constants.tsx
@@ -12,15 +12,15 @@ export const IMGPROXY_URL = 'https://imgproxy.iris.to/insecure';
export const METADATA_SERVICE = 'https://us.rbr.bio';
// read-only relay list
-export const READONLY_RELAYS = ['wss://welcome.nostr.wine', 'wss://relay.nostr.band'];
+export const READONLY_RELAYS = ['wss://welcome.nostr.wine', 'wss://relay.nostr.band/all', 'wss://relay.damus.io'];
// write-only relay list
export const WRITEONLY_RELAYS = ['wss://nostr.mutinywallet.com', 'wss://relay.nostr.band', 'wss://relay.damus.io'];
-// full-relay list, used for inital page and chat/channel messages loading
+// full-relay list
export const FULL_RELAYS = [
'wss://welcome.nostr.wine',
- 'wss://relay.nostr.band',
+ 'wss://relay.nostr.band/all',
'wss://nostr.mutinywallet.com',
'wss://relay.damus.io',
];