refactor: update modal components to use larger size and full width with titles

This commit is contained in:
Mo Tarbin
2026-02-08 01:39:33 -05:00
parent 560cceca9b
commit 492e2f2e7e
12 changed files with 74 additions and 54 deletions

View File

@@ -5,10 +5,13 @@ const UserModal = ({ isOpen, performers = [], onSelect, onClose }) => {
const { ResponsiveModal } = useResponsiveModal()
return (
<ResponsiveModal open={isOpen} onClose={onClose} size='md' fullWidth>
<Typography level='h4' sx={{ mb: 2 }}>
Select User
</Typography>
<ResponsiveModal
open={isOpen}
onClose={onClose}
size='lg'
fullWidth={true}
title='Select User'
>
<List sx={{ mb: 2 }}>
{performers.map(user => (
<ListItem