type detail and shared ui

This commit is contained in:
2026-04-27 02:49:46 +03:00
parent 192cb92c1e
commit 906120e6e6
9 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -206,14 +206,14 @@ export default function DetailMainSections({
<div className="grid grid-cols-1 lg:grid-cols-2 gap-x-8 gap-y-10">
{cast.length > 0 && (
<Section label="Cast" id="detail-cast">
<CastList cast={cast as any[]} fallbackPeople={item.People} />
<CastList cast={cast} fallbackPeople={item.People} />
</Section>
)}
{crew.length > 0 && (
<Section label="Crew">
<CrewGrid crew={crew as any[]} />
<CrewGrid crew={crew} />
<div className="mt-3">
<ComposerBlock crew={crew as any[]} />
<ComposerBlock crew={crew} />
</div>
</Section>
)}