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));