Skip to content
Snippets Groups Projects
Commit 7a5ece81 authored by Dennis Collaris's avatar Dennis Collaris
Browse files

fix: typing issue

parent 637a8cb1
No related branches found
No related tags found
1 merge request!158feat: use floating ui for node link tooltips
This commit is part of merge request !158. Comments created here will be created in the context of that merge request.
......@@ -110,7 +110,7 @@ export const TooltipTrigger = React.forwardRef<HTMLElement, React.HTMLProps<HTML
if (children == null) {
return React.createElement('div').ref;
} else {
return (children as React.ReactElement).ref;
return (children as any).ref;
}
}, [children]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment