Fixing an import order

This commit is contained in:
Keith Stevens
2023-01-22 16:15:54 +09:00
parent ab09a3f50f
commit 79331df366
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -1,10 +1,9 @@
import parser from "accept-language-parser";
import type { NextApiRequest } from "next";
import { i18n } from "src/../next-i18next.config";
import prisma from "src/lib/prismadb";
import type { BackendUserCore } from "src/types/Users";
import { i18n } from "src/../next-i18next.config";
const LOCALE_SET = new Set(i18n.locales);
/**