fix: prisma generate in CI en expliciete types in map/filter callbacks
This commit is contained in:
parent
7dfc389be4
commit
567e91493e
4 changed files with 12 additions and 9 deletions
|
|
@ -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}
|
||||
/>
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue