From 6cd737d98868f0b10f21a7b7fa485117c416e481 Mon Sep 17 00:00:00 2001 From: Falko Date: Mon, 20 Jul 2026 09:18:02 +0200 Subject: [PATCH] log entfernt --- db.js | 1 - 1 file changed, 1 deletion(-) diff --git a/db.js b/db.js index 44bb7e4..fdcf17b 100644 --- a/db.js +++ b/db.js @@ -46,6 +46,5 @@ INNER JOIN kunzu ON kunzu.ku_id = kunde.ku_id export async function fetchCustomersFromSql() { const pool = await getPool(); const result = await pool.request().query(CUSTOMERS_QUERY); - console.log(result); return result.recordset; }