fix: debug
This commit is contained in:
parent
cccdfdedbb
commit
d77c4c2a60
|
@ -29,20 +29,24 @@ const LumeDashboard = (props: any) => {
|
|||
setUniqueNetworkTypes(uniqueTypes);
|
||||
}, [networks]);
|
||||
|
||||
const DefaultTrigger = (props: any) => (
|
||||
<LumeDashboardTrigger asChild {...props}>
|
||||
<button
|
||||
className={cn(
|
||||
"bg-primary text-primary-foreground p-2 px-4 text-sm font-semibold font-mono rounded-md",
|
||||
{
|
||||
"disabled:pointer-events-none disabled:opacity-50": props.disabled,
|
||||
},
|
||||
)}
|
||||
{...props}>
|
||||
Open Dashboard
|
||||
</button>
|
||||
</LumeDashboardTrigger>
|
||||
);
|
||||
const DefaultTrigger = (props: any) => {
|
||||
console.log(props);
|
||||
return (
|
||||
<LumeDashboardTrigger asChild {...props}>
|
||||
<button
|
||||
className={cn(
|
||||
"bg-primary text-primary-foreground p-2 px-4 text-sm font-semibold font-mono rounded-md",
|
||||
{
|
||||
"disabled:pointer-events-none disabled:opacity-50":
|
||||
props.disabled,
|
||||
},
|
||||
)}
|
||||
{...props}>
|
||||
Open Dashboard
|
||||
</button>
|
||||
</LumeDashboardTrigger>
|
||||
);
|
||||
};
|
||||
const GivenTrigger = React.Children.toArray(
|
||||
children?.children || (children as any) || [],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue