Skip to content

Commit

Permalink
Merge pull request #128 from helium/mbthiery/hide-positions-metrics
Browse files Browse the repository at this point in the history
Temporarily hide position metrics during bug fix
  • Loading branch information
mbthiery committed Feb 22, 2024
2 parents 83b3143 + 2cc6425 commit 8ff3091
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/app/stats/components/Governance/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {
} from "../../utils/fetchGovernanceMetrics"
import { GraphWrapper } from "../GraphWrapper"
import { DelegationHistory } from "./DelegationHistory"
import { MetricsRow } from "./MetricsRow"

export const Governance = async () => {
const [veHntStats, veIotMetrics, veMobileMetrics] = await Promise.all([
Expand All @@ -24,7 +23,7 @@ export const Governance = async () => {
{/* @ts-expect-error Async Server Component */}
<DelegationHistory />
</GraphWrapper>
<MetricsRow
{/* <MetricsRow
title="Network"
icon="hnt"
groupStats={veHntStats.network}
Expand All @@ -47,10 +46,10 @@ export const Governance = async () => {
icon="hnt"
groupStats={veHntStats.undelegated}
token="HNT"
/>
/> */}
</div>

<hr className="mx-4 my-8" />
{/* <hr className="mx-4 my-8" />
<MetricsRow
title="veIOT Governance"
icon="iot"
Expand All @@ -63,7 +62,7 @@ export const Governance = async () => {
icon="mobile"
groupStats={veMobileMetrics}
token="MOBILE"
/>
/> */}
</div>
)
}

0 comments on commit 8ff3091

Please sign in to comment.