Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix nit with reference props
  • Loading branch information
sawka committed Feb 23, 2026
commit a6f0fca148b6186579d5c78a365b582f5576a1cd
4 changes: 1 addition & 3 deletions frontend/app/element/tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,9 @@ function TooltipInner({
divRef.current = node;
}
}}
{...getReferenceProps()}
{...getReferenceProps({ onClick: handleClick, onPointerEnter: handlePointerEnter })}
className={divClassName}
style={divStyle}
onClick={handleClick}
onPointerEnter={handlePointerEnter}
>
{children}
</div>
Expand Down
Loading