Another styling fix combined lesson

This commit is contained in:
austinkelsay 2024-11-26 11:50:32 -06:00
parent 49e222035a
commit 7af1dd9ef9
No known key found for this signature in database
GPG Key ID: 44CB4EC6D9F2FA02

View File

@ -158,7 +158,7 @@ const CombinedLesson = ({ lesson, course, decryptionPerformed, isPaid, setComple
if (lesson?.content) {
return (
<div ref={mdDisplayRef}>
<MDDisplay className={`${isVideo ? 'p-0' : 'p-2'} rounded-lg w-full`} source={lesson.content} />
<MDDisplay className={'p-2 rounded-lg w-full'} source={lesson.content} />
</div>
);
}