diff --git a/src/components/lume/LumeDashboard/LumeDashboard.tsx b/src/components/lume/LumeDashboard/LumeDashboard.tsx index 0a8d5c3..2d3371d 100644 --- a/src/components/lume/LumeDashboard/LumeDashboard.tsx +++ b/src/components/lume/LumeDashboard/LumeDashboard.tsx @@ -69,7 +69,7 @@ const LumeDashboard = (props: any) => { {uniqueNetworkTypes.map((type, index) => (
-

{type}

+

{camelCase(type)}

{networks .filter((network) => network.type === type) @@ -103,7 +103,7 @@ const NetworkIndicator = ({ network }: { network: Network }) => {
- {camelCase(network.name)} + {network.name}