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