From 12e4046c93bfe564b8c09beaf225b430e38bbe2e Mon Sep 17 00:00:00 2001 From: Evan Doyle Date: Wed, 4 May 2022 06:20:15 -0700 Subject: [PATCH] 'Token' on About tab should show mint rather than realm pubkey (#651) * Token should show mint rather than realm pubkey * Only show token symbol if realm is certified --- components/AboutRealm.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/components/AboutRealm.tsx b/components/AboutRealm.tsx index dd06eb9a2a..56973f0d4a 100644 --- a/components/AboutRealm.tsx +++ b/components/AboutRealm.tsx @@ -10,10 +10,12 @@ const AboutRealm = () => {

Name

{realmDisplayName || symbol}

-
-

Token

-

{symbol}

-
+ {realmInfo?.isCertified ? ( +
+

Token

+

{symbol}

+
+ ) : null} {realmInfo?.website ? (

Website