Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Fix nameOrAddress resolution to be more specific
Sebastian Martinez committed 4 years ago
commit 9cd353282bec77fef5dd56227173fc675d2363ce
parent e045b92297d21a709f3dea84d692c482ee61f6b2
1 file changed +1 -1
modified src/Address.svelte
@@ -18,7 +18,7 @@

  let addressType: AddressType | null = null;

-
  const nameOrAddress = profile?.name || address;
+
  const nameOrAddress = profile?.ens?.name || address;

  onMount(async () => {
    if (! profile) {