There's a mistake while checking available space to place tooltip in src/Postel/index.tsx on lines 510-515. If initial value is placement='top-start' it would change to 'bottom-start' and then immediately to 'top-start' again in next check.
|
if (placement === "top-start") { |
There's a mistake while checking available space to place tooltip in src/Postel/index.tsx on lines 510-515. If initial value is
placement='top-start'it would change to'bottom-start'and then immediately to'top-start'again in next check.postel/src/Postel/index.tsx
Line 510 in 487c063