fix: include purplepage and userkindpages relays when searching for user in create page #265

Merged
b merged 8 commits from issue-261 into staging 2024-12-18 09:14:21 +00:00
Showing only changes of commit 555504f42f - Show all commits

View File

@ -134,7 +134,15 @@ export const MainLayout = () => {
initNostrLogin({
methods: ['connect', 'extension', 'local'],
noBanner: true,
onAuth: handleNostrAuth
onAuth: handleNostrAuth,
outboxRelays: [
'wss://purplepag.es',
'wss://relay.nos.social',
'wss://user.kindpag.es',
'wss://relay.damus.io',
'wss://nos.lol',
'wss://relay.sigit.io'
]
}).catch((error) => {
console.error('Failed to initialize Nostr-Login', error)
})