Skip to content

Commit 1d0a8f9

Browse files
fix: explicit boolean type
1 parent 671005d commit 1d0a8f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Tooltip/Tooltip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ const Tooltip = ({
782782
},
783783
activeAnchor,
784784
place: actualPlacement,
785-
isOpen: rendered && !hidden && actualContent && canShow,
785+
isOpen: Boolean(rendered && !hidden && actualContent && canShow),
786786
}))
787787

788788
return rendered && !hidden && actualContent ? (

0 commit comments

Comments
 (0)