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 ( );