diff --git a/app/(app)/products/[id]/sprint/planning/page.tsx b/app/(app)/products/[id]/sprint/planning/page.tsx index bb3d215..cb82fb4 100644 --- a/app/(app)/products/[id]/sprint/planning/page.tsx +++ b/app/(app)/products/[id]/sprint/planning/page.tsx @@ -50,7 +50,7 @@ export default async function SprintPlanningPage({ params }: Props) { // Tasks by story const tasksByStory: Record = {} for (const story of sprintStories) { - tasksByStory[story.id] = story.tasks.map(t => ({ + tasksByStory[story.id] = story.tasks.map((t: (typeof story.tasks)[number]) => ({ id: t.id, title: t.title, description: t.description,