import { useFetchRelayList } from '@/hooks' import { toOthersRelaySettings, toRelaySettings } from '@/lib/link' import { SecondaryPageLink } from '@/PageManager' import { useNostr } from '@/providers/NostrProvider' import { Loader } from 'lucide-react' import { useTranslation } from 'react-i18next' export default function Relays({ pubkey }: { pubkey: string }) { const { t } = useTranslation() const { pubkey: accountPubkey } = useNostr() const { relayList, isFetching } = useFetchRelayList(pubkey) return ( {isFetching ? : relayList.originalRelays.length}
{t('Relays')}
) }