diff --git a/src/components/Calendar/Calendar.tsx b/src/components/Calendar/Calendar.tsx index 148e3a6..1dde554 100644 --- a/src/components/Calendar/Calendar.tsx +++ b/src/components/Calendar/Calendar.tsx @@ -6,7 +6,7 @@ import interactionPlugin from "@fullcalendar/interaction"; import { CalendarApi, DateSelectArg } from "@fullcalendar/core"; import ReactCalendar from "react-calendar"; import "./Calendar.css"; -import { useEffect, useMemo, useRef, useState } from "react"; +import { useEffect, useRef, useState } from "react"; import { useAppDispatch, useAppSelector } from "../../app/hooks"; import EventPopover from "../../features/Events/EventModal"; import CalendarPopover from "../../features/Calendars/CalendarModal"; diff --git a/src/components/Calendar/CalendarSelection.tsx b/src/components/Calendar/CalendarSelection.tsx index 5b1243d..1c7945b 100644 --- a/src/components/Calendar/CalendarSelection.tsx +++ b/src/components/Calendar/CalendarSelection.tsx @@ -1,5 +1,4 @@ import { useAppDispatch, useAppSelector } from "../../app/hooks"; -import { getCalendarDetailAsync } from "../../features/Calendars/CalendarSlice"; export default function CalendarSelection({ selectedCalendars, diff --git a/src/features/User/LoginCallback.tsx b/src/features/User/LoginCallback.tsx index e5b3b7e..8cc167f 100644 --- a/src/features/User/LoginCallback.tsx +++ b/src/features/User/LoginCallback.tsx @@ -4,10 +4,7 @@ import { useAppDispatch, useAppSelector } from "../../app/hooks"; import { push } from "redux-first-history"; import { getOpenPaasUserIdAsync, setTokens, setUserData } from "./userSlice"; import { Loading } from "../../components/Loading/Loading"; -import { - getCalendarDetailAsync, - getCalendarsListAsync, -} from "../Calendars/CalendarSlice"; +import { getCalendarsListAsync } from "../Calendars/CalendarSlice"; export function CallbackResume() { const dispatch = useAppDispatch();