LaTeX mal affichée quand on lance le quiz (mais ok en Prévisualisation)

Fixes #170
This commit is contained in:
JubaAzul 2025-01-08 16:45:48 -05:00
parent b46c1c1934
commit ebd6101a64

View file

@ -56,7 +56,7 @@ const MultipleChoiceQuestion: React.FC<Props> = (props) => {
(choice.isCorrect ? '✅' : '❌')}
<div className={`circle ${selected}`}>{alphabet[i]}</div>
<div className={`answer-text ${selected}`}>
{formatLatex(choice.text.text)}
<div dangerouslySetInnerHTML={{ __html: formatLatex(choice.text.text) }} />
</div>
</Button>
{choice.feedback && showAnswer && (