Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
fix: show handle from metadata if none is passed via props
Browse files Browse the repository at this point in the history
Signed-off-by: Rūdolfs Ošiņš <rudolfs@osins.org>
  • Loading branch information
rudolfs committed Nov 10, 2021
1 parent db4c2a8 commit b3e33e8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/App/SharedComponents/UserIdentity.svelte
Expand Up @@ -140,7 +140,9 @@
<div class="metadata">
{#if user}
<div class="handle-wrapper">
<h2 class="typo-overflow-ellipsis">{handle}</h2>
<h2 class="typo-overflow-ellipsis">
{handle || user.metadata.handle}
</h2>
</div>
{#if user.metadata.ethereum}
<CopyableIdentifier
Expand Down

0 comments on commit b3e33e8

Please sign in to comment.