diff --git a/.env.template b/.env.template index 5067aedd..bce7ff9b 100644 --- a/.env.template +++ b/.env.template @@ -15,7 +15,7 @@ VITE_PUSH_BRIDGE=wss://npb.coracle.social/ VITE_BLOCKED_RELAYS=brb.io,relay.nostr.band,nostr.mutinywallet.com,feeds.nostr.band,nostr.zbd.gg,wot.utxo.one,blastr.f7z.xyz,relay.current.fyi VITE_INDEXER_RELAYS=purplepag.es,relay.damus.io,indexer.coracle.social VITE_DEFAULT_RELAYS=relay.damus.io,relay.primal.net,nostr.mom -VITE_DEFAULT_MESSAGING_RELAYS=auth.nostr1.com,nostr-01.uid.ovh,relay.keychat.io,relay.0xchat.com +VITE_DEFAULT_MESSAGING_RELAYS=auth.nostr1.com,relay.keychat.io VITE_SIGNER_RELAYS=relay.nsec.app,ephemeral.snowflare.cc,bucket.coracle.social VITE_VAPID_PUBLIC_KEY=BIt2D4BdgdbCowD_0d3Np6GbrIGHxd7aIEUeZNe3hQuRlHz02OhzvDaai0XSFoJYVzSzdMjdyW-QhvW9_yq8j4Y VITE_GLITCHTIP_API_KEY= diff --git a/src/app/components/Profile.svelte b/src/app/components/Profile.svelte index b19aab1c..a144cf15 100644 --- a/src/app/components/Profile.svelte +++ b/src/app/components/Profile.svelte @@ -27,23 +27,33 @@ const handle = deriveHandleForPubkey(pubkey) const openProfile = () => { - if (!inert) { - pushModal(ProfileDetail, {pubkey, url}) - } + pushModal(ProfileDetail, {pubkey, url}) } const copyPubkey = () => clip(nip19.npubEncode(pubkey))