From 240b14e7e1f475f40c9c512cd4e3e214363fb636 Mon Sep 17 00:00:00 2001 From: Jared Palmer Date: Fri, 2 Jun 2023 09:55:02 -0400 Subject: [PATCH] Fix import --- auth.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth.ts b/auth.ts index 100244e..90c29bf 100644 --- a/auth.ts +++ b/auth.ts @@ -1,10 +1,10 @@ import NextAuth from "@auth/nextjs"; -import GitHub from "@auth/nextjs/providers/github"; +import GitHub from "@auth/core/providers/github"; import { NextResponse } from "next/server"; + export const { handlers: { GET, POST }, auth, - CSRF_experimental, } = NextAuth({ // @ts-ignore providers: [GitHub],