From b9b6d5ae4e0cc1772448835eb88972db7760fdbc Mon Sep 17 00:00:00 2001 From: alma Date: Wed, 21 Jan 2026 00:50:23 +0100 Subject: [PATCH] agenda finition --- app/api/admin/clean-calendars/route.ts | 2 +- app/api/calendars/[id]/route.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/api/admin/clean-calendars/route.ts b/app/api/admin/clean-calendars/route.ts index 540846a..d24415c 100644 --- a/app/api/admin/clean-calendars/route.ts +++ b/app/api/admin/clean-calendars/route.ts @@ -2,7 +2,7 @@ import { NextRequest, NextResponse } from "next/server"; import { getServerSession } from "next-auth/next"; import { authOptions } from "@/app/api/auth/options"; import { prisma } from "@/lib/prisma"; -import logger from "@/lib/logger"; +import { logger } from "@/lib/logger"; async function getAdminToken() { try { diff --git a/app/api/calendars/[id]/route.ts b/app/api/calendars/[id]/route.ts index 40b2f35..2b12498 100644 --- a/app/api/calendars/[id]/route.ts +++ b/app/api/calendars/[id]/route.ts @@ -2,7 +2,7 @@ import { NextRequest, NextResponse } from "next/server"; import { getServerSession } from "next-auth/next"; import { authOptions } from "@/app/api/auth/options"; import { prisma } from "@/lib/prisma"; -import logger from "@/lib/logger"; +import { logger } from "@/lib/logger"; /** * Handles GET requests to retrieve a calendar by its ID.