diff --git a/explorer/src/pages/ClusterStatsPage.tsx b/explorer/src/pages/ClusterStatsPage.tsx index 75644be3fd..4f4a70013e 100644 --- a/explorer/src/pages/ClusterStatsPage.tsx +++ b/explorer/src/pages/ClusterStatsPage.tsx @@ -54,7 +54,7 @@ function StatsCardBody() { const { avgSlotTime_1h, avgSlotTime_1min, epochInfo } = dashboardInfo; const hourlySlotTime = Math.round(1000 * avgSlotTime_1h); - const averageSlotTime = Math.round(1000 * avgSlotTime_1min) + "ms"; + const averageSlotTime = Math.round(1000 * avgSlotTime_1min); const { slotIndex, slotsInEpoch } = epochInfo; const currentEpoch = epochInfo.epoch.toString(); const epochProgress = ((100 * slotIndex) / slotsInEpoch).toFixed(1) + "%"; @@ -81,20 +81,24 @@ function StatsCardBody() { )}