Change classname "reply-mentions-modal__accounts" to use only Tailwind

This commit is contained in:
danidfra 2024-11-01 17:00:24 -03:00
parent 9a7d899fe8
commit 6ccd7c1eed
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ const ReplyMentionsModal: React.FC<IReplyMentionsModal> = ({ composeId, onClose
closeIcon={require('@tabler/icons/outline/arrow-left.svg')} closeIcon={require('@tabler/icons/outline/arrow-left.svg')}
closePosition='left' closePosition='left'
> >
<div className='reply-mentions-modal__accounts'> <div className='block min-h-[300px] flex-1 flex-row overflow-y-auto'>
{mentions.map(accountId => <Account composeId={composeId} key={accountId} accountId={accountId} author={author === accountId} />)} {mentions.map(accountId => <Account composeId={composeId} key={accountId} accountId={accountId} author={author === accountId} />)}
</div> </div>
</Modal> </Modal>