From 38da748de24399af9fb06063bd2b28e088eb38eb Mon Sep 17 00:00:00 2001 From: qwerinope Date: Fri, 30 May 2025 23:09:48 +0200 Subject: [PATCH] forgot to remove one line of debugging lol --- bot/db/dbAuth.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/bot/db/dbAuth.ts b/bot/db/dbAuth.ts index 5f0110d..e74e320 100644 --- a/bot/db/dbAuth.ts +++ b/bot/db/dbAuth.ts @@ -68,7 +68,6 @@ export async function deleteAuthRecord(userId: string): Promise { try { const data = await db.query("SELECT * FROM auth WHERE user=$userId;", { userId }); if (!data[0] || !data[0][0]) return undefined; - console.log(data) for (const obj of data[0]) { db.delete(obj.id); };