diff --git a/src/hooks/useScheduleTable.js b/src/hooks/useScheduleTable.js index 3083f2f..d2b6a4c 100644 --- a/src/hooks/useScheduleTable.js +++ b/src/hooks/useScheduleTable.js @@ -81,7 +81,7 @@ export default function useScheduleTable({ }]; }); - const isEmptyRow = !eventCells.find(slot => !!slot?.event); + const isEmptyRow = false; // TODO !eventCells.find(slot => !!slot?.event); const showHeader = isFirst || isFirstForTheDay; const showSlot = !isLast && !isLastForTheDay && !isEmptyRow;