Skip to content

Commit

Permalink
fix: identity display
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaut committed Oct 31, 2024
1 parent 712ee46 commit 10e7211
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/src/components/AccountDisplay/AccountDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ const AccountDisplay = ({
className="multisigName"
data-cy="label-account-name"
>
{displayName}
{!isLocalNameDisplayed && !!subIdentity && (
<span
className="subIdentity"
data-cy="label-sub-identity"
>
/{subIdentity}
{subIdentity}/
</span>
)}
{displayName}
</NameStyled>
{canEdit && !displayName && (
<NoNameStyled data-cy="label-no-name">No Name</NoNameStyled>
Expand Down

0 comments on commit 10e7211

Please sign in to comment.