diff --git a/packages/app-store/sendgrid/api/_postAdd.ts b/packages/app-store/sendgrid/api/_postAdd.ts index be7c9dc1d1..70e1397418 100644 --- a/packages/app-store/sendgrid/api/_postAdd.ts +++ b/packages/app-store/sendgrid/api/_postAdd.ts @@ -1,4 +1,3 @@ -import getInstalledAppPath from "_utils/getInstalledAppPath"; import type { NextApiRequest, NextApiResponse } from "next"; import { symmetricEncrypt } from "@calcom/lib/crypto"; @@ -8,6 +7,7 @@ import { defaultResponder } from "@calcom/lib/server"; import prisma from "@calcom/prisma"; import checkSession from "../../_utils/auth"; +import getInstalledAppPath from "../../_utils/getInstalledAppPath"; export async function getHandler(req: NextApiRequest, res: NextApiResponse) { const session = checkSession(req);