web #1

Merged
shafin808s merged 35 commits from web into main 2026-03-11 20:41:06 +00:00
197 changed files with 97671 additions and 2757 deletions
Showing only changes of commit 8dbadae58c - Show all commits

View File

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