fix: make recipe crawling work

This commit is contained in:
Max Richter
2025-11-12 15:41:30 +01:00
parent 92126882b6
commit 7ad08daf80
19 changed files with 44 additions and 55 deletions

View File

@@ -52,7 +52,7 @@ export default async function MovieIndex(
</header>
<Grid>
{movies?.map((doc, i) => {
return <ResourceCard key={i} res={doc} />;
return <ResourceCard key={doc.name || i} res={doc} />;
})}
</Grid>
</MainLayout>