From 4fb1c14d3d874554aa24ccabc7f11932ad9afa50 Mon Sep 17 00:00:00 2001 From: Agusti Fernandez Pardo Date: Fri, 20 May 2022 02:57:24 +0200 Subject: [PATCH] fix: body unknown --- lib/helpers/verifyApiKey.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers/verifyApiKey.ts b/lib/helpers/verifyApiKey.ts index 67ad05c8ac..12a92e35a5 100644 --- a/lib/helpers/verifyApiKey.ts +++ b/lib/helpers/verifyApiKey.ts @@ -9,7 +9,7 @@ import prisma from "@calcom/prisma"; declare module "next" { export interface NextApiRequest extends IncomingMessage { userId: number; - body: Body; + body: unknown; method: string; query: { apiKey?: string;