Skip to content

Commit

Permalink
Merge branch 'hotfix/fix-identity'
Browse files Browse the repository at this point in the history
  • Loading branch information
kingsleydon committed Sep 22, 2021
2 parents 9b2d537 + 85c4ced commit c925a40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/app-delegate/src/components/MyDelegateTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,16 @@ const MyDelegateTable = (): JSX.Element => {
{
Header: 'Owner',
accessor: ({owner}) => {
const display = identities?.[owner] || abridgeString(owner)
const display = identities?.[owner]?.display || abridgeString(owner)
const verified = identities?.[owner]?.verified || false
return (
<a
href={`https://khala.subscan.io/account/${owner}`}
target="_blank"
rel="noreferrer"
>
{display}
{verified && '(Verified)'}
</a>
)
},
Expand Down

0 comments on commit c925a40

Please sign in to comment.