Skip to content

Commit

Permalink
fix: Timetable에서 필요없는 prop 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
simeunseo committed Jun 25, 2024
1 parent b1579ea commit 7228267
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/timetableComponents/Timetable.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { ReactNode } from 'react';

import styled from 'styled-components';
import { getOverallScheduleResponse } from 'utils/apis/useGetOverallSchedule';

import DateTitle from './parts/ColumnTitle';
import SlotTitle from './parts/SlotTitle';
Expand All @@ -12,7 +11,6 @@ interface TimetableProps {
availableDates: DateType[];
children: (props: ColumnStructure) => ReactNode;
bottomItem?: ReactNode;
dataOverallSchedule?: getOverallScheduleResponse['data'];
}

function Timetable({ timeSlots, availableDates, children, bottomItem }: TimetableProps) {
Expand Down

0 comments on commit 7228267

Please sign in to comment.