From 461147b7ac0d33e6c60a10566ec2b7ad87406e02 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 12 Oct 2023 15:08:30 -0400 Subject: [PATCH] fix: camelCase the type, not the name --- src/components/lume/LumeDashboard/LumeDashboard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}