diff --git a/src/components/Tooltip/Tooltip.tsx b/src/components/Tooltip/Tooltip.tsx index 582fd954..32297bbf 100644 --- a/src/components/Tooltip/Tooltip.tsx +++ b/src/components/Tooltip/Tooltip.tsx @@ -710,9 +710,9 @@ const Tooltip = ({ } }, [id, anchorSelect]) - const canShow = !hidden && content && show && Object.keys(inlineStyles).length > 0 + const canShow = show && Object.keys(inlineStyles).length > 0 - return rendered ? ( + return rendered && !hidden && content ? (