remove unused imports

This commit is contained in:
2024-06-19 06:32:38 +01:00
parent e4a1903b48
commit b0e2bb6e14
263 changed files with 1458 additions and 2693 deletions
+2 -6
View File
@@ -10,15 +10,11 @@
* description: Success
*/
import NextAuth from "next-auth";
import EmailProvider from "next-auth/providers/email";
import { PrismaAdapter } from "@next-auth/prisma-adapter";
import { PrismaClient } from "@prisma/client";
import nodemailer from "nodemailer";
import NextAuth from "next-auth";
import EmailProvider from "next-auth/providers/email";
import { consoleLogger } from "../../../actions";
import { useRouter } from "next/router";
import nookies from "nookies";
import { getCsrfToken } from "next-auth/react";
const prisma = new PrismaClient();
// For more information on each option (and a full list of options) go to