feat: Update task and project ID formats, add populateSeedData function, and enhance user ID handling

This commit is contained in:
2024-11-23 17:19:09 +02:00
parent 5f9ee29c8d
commit 14284e1d35
21 changed files with 1299 additions and 118 deletions

View File

@@ -24,7 +24,7 @@ const Timeline = () => {
start: new Date(project.startDate as string),
end: new Date(project.endDate as string),
name: project.name,
id: `Project-${project.id}`,
id: `Project-${project.projectId}`,
type: "project" as TaskTypeItems,
progress: 50,
isDisabled: false,