diff --git a/app/components/LiveTransactionStatsCard.tsx b/app/components/LiveTransactionStatsCard.tsx index 07aa9ed4..db3ed4f8 100644 --- a/app/components/LiveTransactionStatsCard.tsx +++ b/app/components/LiveTransactionStatsCard.tsx @@ -39,7 +39,19 @@ export function LiveTransactionStatsCard() {

Live Transaction Stats

+ +
+ Note: We are aware of an issue with ping statistic reporting. Ping statistics may not reflect actual + network performance. Please see{' '} + + validators.app + {' '} + for more information. +
); @@ -273,7 +285,11 @@ function PingStatsCardBody({ series, setSeries }: { series: Series; setSeries: S return ; } - return ; + return ( + <> + + + ); } type StatsNotReadyProps = { error: boolean; retry?: () => void }; diff --git a/app/page.tsx b/app/page.tsx index 4a74b565..60023177 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -71,7 +71,10 @@ function StakingComponent() { const activeStake = React.useMemo(() => { if (voteAccounts && delinquentStake) { - return voteAccounts.current.reduce((prev, current) => prev + current.activatedStake, BigInt(0)) + delinquentStake; + return ( + voteAccounts.current.reduce((prev, current) => prev + current.activatedStake, BigInt(0)) + + delinquentStake + ); } }, [voteAccounts, delinquentStake]);