diff --git a/packages/@react-aria/overlays/src/useOverlayPosition.ts b/packages/@react-aria/overlays/src/useOverlayPosition.ts index 0f27f54ff5c..72fcba5ed14 100644 --- a/packages/@react-aria/overlays/src/useOverlayPosition.ts +++ b/packages/@react-aria/overlays/src/useOverlayPosition.ts @@ -250,7 +250,7 @@ export function useOverlayPosition(props: AriaPositionProps): PositionAria { position: 'absolute', zIndex: 100000, // should match the z-index in ModalTrigger ...position.position, - maxHeight: position.maxHeight + maxHeight: position.maxHeight ?? '100vh' } }, placement: position.placement,