diff --git a/frontend/src/hooks/useTasks.ts b/frontend/src/hooks/useTasks.ts index 18bc86e..59b3de5 100644 --- a/frontend/src/hooks/useTasks.ts +++ b/frontend/src/hooks/useTasks.ts @@ -11,6 +11,8 @@ export interface TaskListDto { export interface TaskListItemDto { id: string; + title: string; + status: string; assigneeId: string | null; createdAt: string; isAssignedToMe: boolean;