From 8b12c3ed9e3bf62b1dded383dccfe748a0adbb94 Mon Sep 17 00:00:00 2001 From: Ahmed Darrazi Date: Fri, 5 Dec 2025 23:40:46 +0100 Subject: [PATCH] Fix: Use type imports for NextAuth types --- lib/auth/utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/auth/utils.ts b/lib/auth/utils.ts index dadb8ba..0313e02 100644 --- a/lib/auth/utils.ts +++ b/lib/auth/utils.ts @@ -1,7 +1,7 @@ import { db } from "@/lib/db/index"; import { DrizzleAdapter } from "@auth/drizzle-adapter"; -import { getServerSession, NextAuthOptions } from "next-auth"; -import { Adapter } from "next-auth/adapters"; +import { getServerSession, type NextAuthOptions } from "next-auth"; +import { type Adapter } from "next-auth/adapters"; import { redirect } from "next/navigation"; import { z } from "zod"; import AzureADProvider from "next-auth/providers/azure-ad";