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