Enhancement: Allow scrolling when edit m3u account modal is open on mobile.

This commit is contained in:
SergeantPanda 2025-11-28 11:10:11 -06:00
parent 2b58d7d46e
commit 1d23ed3685

View file

@ -226,7 +226,17 @@ const M3U = ({
return (
<>
<Modal size={700} opened={isOpen} onClose={close} title="M3U Account">
<Modal
size={700}
opened={isOpen}
onClose={close}
title="M3U Account"
scrollAreaComponent={Modal.NativeScrollArea}
lockScroll={false}
withinPortal={true}
trapFocus={false}
yOffset="2vh"
>
<LoadingOverlay
visible={form.submitting}
overlayBlur={2}