From 60dd966f3eae0c8ffa1fea74487a33d098b0960b Mon Sep 17 00:00:00 2001 From: cdricms <36056008+cdricms@users.noreply.github.com> Date: Mon, 10 Feb 2025 09:57:40 +0100 Subject: [PATCH] Fixed dumb issue --- frontend/app/(main)/planning/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)