From 78caaf9f21b09b2a3329f167ea3387939fd3d6fe Mon Sep 17 00:00:00 2001 From: Jon Cullison Date: Fri, 14 Feb 2025 14:50:59 -0500 Subject: [PATCH] fixes popup glitch when there is not enough width --- src/hooks/useAlign.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/hooks/useAlign.ts b/src/hooks/useAlign.ts index 8af82525..6d478ff9 100644 --- a/src/hooks/useAlign.ts +++ b/src/hooks/useAlign.ts @@ -167,11 +167,7 @@ export default function useAlign( const doc = popupElement.ownerDocument; const win = getWin(popupElement); - const { - width, - height, - position: popupPosition, - } = win.getComputedStyle(popupElement); + const { position: popupPosition } = win.getComputedStyle(popupElement); const originLeft = popupElement.style.left; const originTop = popupElement.style.top; @@ -222,6 +218,7 @@ export default function useAlign( }; } const popupRect = popupElement.getBoundingClientRect(); + const { height, width } = win.getComputedStyle(popupElement); popupRect.x = popupRect.x ?? popupRect.left; popupRect.y = popupRect.y ?? popupRect.top; const {