diff --git a/src/components/Popover.tsx b/src/components/Popover.tsx index 630fee1c..9a046599 100644 --- a/src/components/Popover.tsx +++ b/src/components/Popover.tsx @@ -69,7 +69,6 @@ export const Popover = ({ if (fitInViewport && popoverRef.current) { const element = popoverRef.current; const { x, y, width, height } = element.getBoundingClientRect(); - const { innerWidth: viewportWidth, innerHeight: viewportHeight } = window; //Position correctly when clicked on rightmost part or the bottom part of viewport if (x + width - offsetLeft > viewportWidth) {