Skip to content

Commit b5ebbc9

Browse files
import
1 parent f878ff6 commit b5ebbc9

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/frontend/src/pages/GanttPage/GanttChart/GanttChart.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Box, useTheme } from '@mui/material';
22
import {
33
GanttChange,
44
GanttCollection,
5+
GanttTask,
56
HighlightTaskComparator,
67
RequestEventChange
78
} from '../../../utils/gantt.utils';
@@ -31,12 +32,7 @@ interface GanttChartProps<E, T> {
3132
editability?: GanttEditability<E, T>;
3233
}
3334

34-
const GanttChart = <E, T>({
35-
startDate,
36-
endDate,
37-
collections,
38-
editability
39-
}: GanttChartProps<E, T>) => {
35+
const GanttChart = <E, T>({ startDate, endDate, collections, editability }: GanttChartProps<E, T>) => {
4036
const theme = useTheme();
4137
const days = eachDayOfInterval({ start: startDate, end: endDate }).filter((day) => isMonday(day));
4238

0 commit comments

Comments
 (0)