diff --git a/data/tasks.json b/data/tasks.json index d3e9bef..b024c35 100644 --- a/data/tasks.json +++ b/data/tasks.json @@ -56,18 +56,12 @@ { "id": "2", "title": "MoodWeave App Idea", - "description": "Social mood tracking with woven visualizations", - "type": "idea", + "sprintId": "1771551323429", + "projectId": "1", "status": "backlog", "priority": "medium", - "projectId": "1", - "createdAt": "2026-02-18T17:01:23.109Z", - "updatedAt": "2026-02-18T17:01:23.109Z", - "comments": [], - "tags": [ - "ios", - "social" - ] + "type": "idea", + "updatedAt": "2026-02-20T02:15:46.591Z" }, { "id": "3", @@ -456,7 +450,7 @@ "updatedAt": "2026-02-20T01:52:57.259Z" } ], - "lastUpdated": 1771552377259, + "lastUpdated": 1771553746591, "sprints": [ { "name": "Sprint 1", diff --git a/src/components/BacklogView.tsx b/src/components/BacklogView.tsx index 3f9b7fd..55df60e 100644 --- a/src/components/BacklogView.tsx +++ b/src/components/BacklogView.tsx @@ -312,6 +312,7 @@ export function BacklogView() { .sort((a, b) => new Date(a.startDate).getTime() - new Date(b.startDate).getTime()) .map((sprint) => { const sprintTasks = tasks.filter((t) => t.sprintId === sprint.id) + console.log(`Sprint ${sprint.name}: ${sprintTasks.length} tasks`, sprintTasks.map(t => t.title)) return (