From 447cecbf3fa08295b1215cb54fe29e5755c9b01e Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Fri, 23 Jun 2023 10:29:10 +0100 Subject: [PATCH] Removed an unneeded console.log --- src/pages/api/stats/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pages/api/stats/index.ts b/src/pages/api/stats/index.ts index f4413d2e..555ff86a 100644 --- a/src/pages/api/stats/index.ts +++ b/src/pages/api/stats/index.ts @@ -40,8 +40,6 @@ async function post(req: NextApiRequest, res: NextApiResponse) { return; } - console.log("HERE"); - const stats = req.body as Stat[]; await stats.forEach(async (stat) => await addDoc(collection(db, "stats"), stat));