diff --git a/auth.ts b/auth.ts index 7f21219..2bb7924 100644 --- a/auth.ts +++ b/auth.ts @@ -1,6 +1,6 @@ import NextAuth from "next-auth" -import github from "next-auth/providers/github" +import GitHub from "next-auth/providers/github" export const { handlers, signIn, signOut, auth } = NextAuth({ - providers: [github], + providers: [GitHub], })