From a1f1f573d52fecb17855a5cf00bf018c5e00f2e0 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 26 Mar 2021 10:54:53 -0700 Subject: [PATCH] hotfix: account for custom endpoint possible conditions in stakehistory (#16151) --- explorer/src/pages/ClusterStatsPage.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/explorer/src/pages/ClusterStatsPage.tsx b/explorer/src/pages/ClusterStatsPage.tsx index 540da6bf0a..a2fe98a2a1 100644 --- a/explorer/src/pages/ClusterStatsPage.tsx +++ b/explorer/src/pages/ClusterStatsPage.tsx @@ -98,7 +98,11 @@ function StakingComponent() { return ; } else if (typeof supply === "string") { return ; - } else if (stakeInfo.status === FetchStatus.FetchFailed) { + } else if ( + stakeInfo.status === FetchStatus.FetchFailed || + (stakeInfo.status === FetchStatus.Fetched && + (!stakeHistory.length || stakeHistory.length < 1)) + ) { return ( );