diff --git a/explorer/src/pages/SupplyPage.tsx b/explorer/src/pages/SupplyPage.tsx index 892548e759..e100fc0d1b 100644 --- a/explorer/src/pages/SupplyPage.tsx +++ b/explorer/src/pages/SupplyPage.tsx @@ -1,12 +1,14 @@ import React from "react"; import { TopAccountsCard } from "components/TopAccountsCard"; import { SupplyCard } from "components/SupplyCard"; +import { Cluster, useCluster } from "providers/cluster"; export function SupplyPage() { + const cluster = useCluster(); return (
- + {cluster.cluster === Cluster.Custom ? : null}
); }