diff --git a/frontend/app/(main)/planning/page.tsx b/frontend/app/(main)/planning/page.tsx index a4a5cc6..be4f6b7 100644 --- a/frontend/app/(main)/planning/page.tsx +++ b/frontend/app/(main)/planning/page.tsx @@ -1,7 +1,7 @@ "use client"; import Planning from "@/components/planning"; import { useApi } from "@/hooks/use-api"; -import { type CalendarEventExternal } from "@schedule-x/calendar"; +import ICalendarEvent from "@/interfaces/ICalendarEvent"; import { Loader2 } from "lucide-react"; const Page = () => { @@ -10,7 +10,7 @@ const Page = () => { isLoading, success, mutate, - } = useApi("/events", undefined, false, false); + } = useApi("/events", undefined, false, false); if (isLoading) return ; if (success)