diff --git a/components/layout/ChainChart.tsx b/components/layout/ChainChart.tsx index c163df4e..51b6c939 100644 --- a/components/layout/ChainChart.tsx +++ b/components/layout/ChainChart.tsx @@ -453,7 +453,7 @@ export default function ChainChart({ } } else { if (key === "throughput") { - suffix = "mgas/s"; + suffix = "Mgas/s"; } } @@ -538,7 +538,7 @@ export default function ChainChart({ } if (metricKey === "throughput") { - suffix = "mgas/s"; + suffix = "Mgas/s"; } // if (series.name === item.chain_name) { return ` diff --git a/components/layout/ComparisonChart.tsx b/components/layout/ComparisonChart.tsx index 4a5a24d8..c7dc335e 100644 --- a/components/layout/ComparisonChart.tsx +++ b/components/layout/ComparisonChart.tsx @@ -511,7 +511,7 @@ export default function ComparisonChart({ } if (metric_id === "throughput") { - suffix = " mgas/s"; + suffix = " Mgas/s"; } return ` @@ -563,7 +563,7 @@ export default function ComparisonChart({ let suffix = ""; let value = pointsSum; if (metric_id === "throughput") { - suffix = " mgas/s"; + suffix = " Mgas/s"; } const sumRow = diff --git a/components/layout/MetricsTable.tsx b/components/layout/MetricsTable.tsx index 74dc6941..7f92899f 100644 --- a/components/layout/MetricsTable.tsx +++ b/components/layout/MetricsTable.tsx @@ -387,7 +387,7 @@ const MetricsTable = ({ } } else { if (metric_id === "throughput") { - suffix = "mgas/s"; + suffix = "Mgas/s"; } } return { value, prefix, suffix };