feat: se aplican varios fix a las pruebas

This commit is contained in:
2026-01-22 13:24:48 -03:00
parent 360cf520e8
commit 957539d201
15 changed files with 899 additions and 26 deletions
@@ -301,9 +301,9 @@ export default function LessonPlayerPage({ params }: { params: { id: string, les
return (
<HotspotPlayer
title={block.title}
description={block.content || ""}
imageUrl={block.url || ""}
hotspots={block.metadata?.hotspots || []}
description={block.description || ""}
imageUrl={block.imageUrl || ""}
hotspots={block.hotspots || []}
onComplete={(score) => handleBlockComplete(block.id, score)}
/>
);
@@ -311,7 +311,7 @@ export default function LessonPlayerPage({ params }: { params: { id: string, les
return (
<MemoryPlayer
title={block.title}
pairs={block.metadata?.pairs || []}
pairs={block.pairs || []}
onComplete={(score) => handleBlockComplete(block.id, score)}
/>
);