Skip to content

Commit

Permalink
'Token' on About tab should show mint rather than realm pubkey (#651)
Browse files Browse the repository at this point in the history
* Token should show mint rather than realm pubkey

* Only show token symbol if realm is certified
  • Loading branch information
emdoyle committed May 4, 2022
1 parent 7c543ef commit 12e4046
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions components/AboutRealm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ const AboutRealm = () => {
<p className="text-xs text-fgd-3">Name</p>
<p className="text-fgd-1">{realmDisplayName || symbol}</p>
</div>
<div>
<p className="text-xs text-fgd-3">Token</p>
<p className="text-fgd-1">{symbol}</p>
</div>
{realmInfo?.isCertified ? (
<div>
<p className="text-xs text-fgd-3">Token</p>
<p className="text-fgd-1">{symbol}</p>
</div>
) : null}
{realmInfo?.website ? (
<div>
<p className="text-xs text-fgd-3">Website</p>
Expand Down

1 comment on commit 12e4046

@vercel
Copy link

@vercel vercel bot commented on 12e4046 May 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.