fix: resolve TypeScript errors in migrated components

This commit is contained in:
Jason Woltje
2026-01-29 22:00:14 -06:00
parent d54714ea06
commit abbf886483
36 changed files with 758 additions and 43 deletions

View File

@@ -215,7 +215,7 @@ export function GanttChart({
onTaskClick,
height = 400,
showDependencies = false,
}: GanttChartProps): JSX.Element {
}: GanttChartProps): React.ReactElement {
// Sort tasks by start date
const sortedTasks = useMemo(() => {
return [...tasks].sort((a, b) => a.startDate.getTime() - b.startDate.getTime());