Removed an unneeded console.log

This commit is contained in:
Tiago Ribeiro
2023-06-23 10:29:10 +01:00
parent b2cc706a5e
commit 447cecbf3f

View File

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