From 897405b092d7e0789226d6907ef3092c3ffb66e0 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 12 Oct 2023 14:54:07 -0400 Subject: [PATCH] fix: remove debug --- .../lume/LumeDashboard/LumeDashboard.tsx | 32 ++++++++----------- 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/src/components/lume/LumeDashboard/LumeDashboard.tsx b/src/components/lume/LumeDashboard/LumeDashboard.tsx index ac7aedc..f1b065a 100644 --- a/src/components/lume/LumeDashboard/LumeDashboard.tsx +++ b/src/components/lume/LumeDashboard/LumeDashboard.tsx @@ -29,24 +29,20 @@ const LumeDashboard = (props: any) => { setUniqueNetworkTypes(uniqueTypes); }, [networks]); - const DefaultTrigger = (props: any) => { - console.log(props); - return ( - - - - ); - }; + const DefaultTrigger = (props: any) => ( + + + + ); const GivenTrigger = React.Children.toArray( children?.children || (children as any) || [], )