fix: prisma generate in CI en expliciete types in map/filter callbacks

This commit is contained in:
Janpeter Visser 2026-04-24 14:23:41 +02:00
parent 7dfc389be4
commit 567e91493e
4 changed files with 12 additions and 9 deletions

View file

@ -89,7 +89,7 @@ export default async function ProductBacklogPage({ params }: Props) {
left={
<PbiList
productId={id}
pbis={pbis.map(p => ({ id: p.id, title: p.title, priority: p.priority }))}
pbis={pbis.map((p: (typeof pbis)[number]) => ({ id: p.id, title: p.title, priority: p.priority }))}
isDemo={isDemo}
/>
}