diff --git a/src/components/player/modals/AudioTrackModal.tsx b/src/components/player/modals/AudioTrackModal.tsx index ca2bbcee..97ec9852 100644 --- a/src/components/player/modals/AudioTrackModal.tsx +++ b/src/components/player/modals/AudioTrackModal.tsx @@ -27,9 +27,8 @@ export const AudioTrackModal: React.FC = ({ }) => { const { width, height } = useWindowDimensions(); - // Size constants matching SubtitleModal aesthetics const menuWidth = Math.min(width * 0.9, 420); - const menuMaxHeight = height * 0.8; + const menuMaxHeight = height * 0.9; const handleClose = () => setShowAudioModal(false);