Pass entryId to IgMetaBlock in QuizRunner.tsx

This commit is contained in:
2026-01-08 01:18:05 +01:00
parent 7530cc5f7e
commit 47e036b076

View File

@@ -207,7 +207,7 @@ function ExplanationPanel({ question, targets }: { question: QuizQuestionWithEnt
<p className="muted">No linked study items were found for this question.</p> <p className="muted">No linked study items were found for this question.</p>
)} )}
<VideoPlayer src={question.video_url} /> <VideoPlayer src={question.video_url} />
{question.ig_meta && <IgMetaBlock ig={question.ig_meta} />} {question.ig_meta && <IgMetaBlock ig={question.ig_meta} entryId={question.entryId} />}
</div> </div>
); );
} }