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