diff --git a/src/components/calendar/Calendar.tsx b/src/components/calendar/Calendar.tsx index 9b4b366..b7f8564 100644 --- a/src/components/calendar/Calendar.tsx +++ b/src/components/calendar/Calendar.tsx @@ -3,7 +3,7 @@ import FullCalendar from "@fullcalendar/react"; import dayGridPlugin from "@fullcalendar/daygrid"; import timeGridPlugin from "@fullcalendar/timegrid"; import interactionPlugin from '@fullcalendar/interaction'; -import { INITIAL_EVENTS, createEventId } from './event-utils'; +import { INITIAL_EVENTS, createEventId, handleEventRemoveFC } from './event-utils'; import { DateSelectArg, EventApi, EventClickArg, EventContentArg } from "fullcalendar"; // for dropdown @@ -15,10 +15,9 @@ import Select, { SelectChangeEvent } from '@mui/material/Select'; function renderEventContent(eventContent: EventContentArg) { return ( -
{eventContent.timeText} {eventContent.event.title}