fix(test): fix directions text

This commit is contained in:
shafin-r
2026-03-04 20:54:25 +06:00
parent 980eb130e2
commit 8dbadae58c

View File

@ -1671,7 +1671,8 @@ export const Test = () => {
{showDirections ? (
<div className="t-card p-6 flex-1">
<p className="font-semibold text-gray-700 leading-relaxed">
{renderQuestionText(currentQuestion?.explanation || "")}
Answer all questions in this section based on the
information provided.
</p>
</div>
) : (
@ -1717,7 +1718,9 @@ export const Test = () => {
<div className="t-card p-6 flex-1">
<HighlightableRichText
fieldKey={`${currentQuestion?.id ?? "unknown"}:explanation`}
text={currentQuestion?.explanation || ""}
text={
"Answer all questions in this section based on the information provided."
}
className="font-semibold text-gray-700 leading-relaxed"
/>
</div>