feat(HAI-001): make Task.title optional in type definition
This commit is contained in:
@@ -3,7 +3,7 @@ export type Column = (typeof COLUMNS)[number];
|
||||
|
||||
export interface Task {
|
||||
id: string;
|
||||
title: string;
|
||||
title?: string;
|
||||
description: string;
|
||||
column: Column;
|
||||
dependencies: string[];
|
||||
|
||||
Reference in New Issue
Block a user