From 5fde4ee3ae595e06831c07a3fa77b7e13b043701 Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 12 Aug 2021 11:12:07 -0700 Subject: [PATCH] fix: price can be unexpectedly missing even under Coingecko success result (#19209) --- explorer/src/components/account/TokenAccountSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer/src/components/account/TokenAccountSection.tsx b/explorer/src/components/account/TokenAccountSection.tsx index 3c6a2fee5..8c2281bad 100644 --- a/explorer/src/components/account/TokenAccountSection.tsx +++ b/explorer/src/components/account/TokenAccountSection.tsx @@ -101,7 +101,7 @@ function MintAccountCard({ coinInfo?.status === CoingeckoStatus.Loading && ( )} - {tokenPriceInfo && ( + {tokenPriceInfo && tokenPriceInfo.price && (