Skip to content

Commit

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

* Token should show mint rather than realm pubkey

* Only show token symbol if realm is certified
  • Loading branch information
emdoyle authored 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

0 comments on commit 12e4046

Please sign in to comment.