Skip to content

Commit

Permalink
removed debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkatz committed Oct 19, 2023
1 parent 950d752 commit 8c21496
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ const PopoverInternal = forwardRef(
Array.isArray(externalPositions) ? externalPositions : [externalPositions],
);

console.log('HI FROM POPOVER');

// TODO: factor prevs out into a custom prevs hook
const prevIsOpen = useRef(false);
const prevPositions = useRef<PopoverPosition[] | undefined>();
Expand Down Expand Up @@ -107,7 +105,6 @@ const PopoverInternal = forwardRef(
positions !== prevPositions.current ||
reposition !== prevReposition.current)
) {
console.log('POSITIONING POPOVER');
positionPopover();
}

Expand Down

0 comments on commit 8c21496

Please sign in to comment.