Sample code here:
https://codesandbox.io/s/competent-hooks-bicfv?file=/src/Tooltip.tsx
After upgrading from 3.11.1, I found that tooltips that won’t fit no longer reposition to some other position (top => left, bottom, right). I have tested this in Safari and Chrome on macOS.
<ReactTooltip
className={className}
id={id}
effect="solid"
place="top"
type={dark ? "dark" : "light"}
>
<div className="tooltip__text">{text}</div>
</ReactTooltip>
Here's what gets displayed with 3.11.1:

And with 3.11.2 or newer (in this case 3.11.6)

Help?
Sample code here:
https://codesandbox.io/s/competent-hooks-bicfv?file=/src/Tooltip.tsx
After upgrading from 3.11.1, I found that tooltips that won’t fit no longer reposition to some other position (top => left, bottom, right). I have tested this in Safari and Chrome on macOS.
Here's what gets displayed with 3.11.1:

And with 3.11.2 or newer (in this case 3.11.6)

Help?