From 7c35c45904559a28db6af4b76713ee7d7669bd95 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 12 Oct 2023 15:15:59 -0400 Subject: [PATCH] fix: we need pascalCase --- src/components/lume/LumeDashboard/LumeDashboard.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/lume/LumeDashboard/LumeDashboard.tsx b/src/components/lume/LumeDashboard/LumeDashboard.tsx index 2d3371d..f570339 100644 --- a/src/components/lume/LumeDashboard/LumeDashboard.tsx +++ b/src/components/lume/LumeDashboard/LumeDashboard.tsx @@ -69,7 +69,9 @@ const LumeDashboard = (props: any) => { {uniqueNetworkTypes.map((type, index) => (
-

{camelCase(type)}

+

+ {camelCase(type, { pascalCase: true })} +

{networks .filter((network) => network.type === type)