[WEB-2453] fix: Render on hover only when enabled (#5609)

This commit is contained in:
rahulramesha 2024-09-20 20:26:38 +05:30 committed by GitHub
parent 66cfc7344e
commit 604ddad3fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 38 additions and 13 deletions

View file

@ -43,7 +43,7 @@ export const Tooltip: React.FC<ITooltipProps> = ({
openDelay = 200,
closeDelay,
isMobile = false,
renderByDefault = true,
renderByDefault = true, //FIXME: tooltip should always render on hover and not by default, this is a temporary fix
}) => {
const toolTipRef = useRef<HTMLDivElement | null>(null);