log entfernt

This commit is contained in:
2026-07-20 09:18:02 +02:00
parent fcf16bb91a
commit 6cd737d988
-1
View File
@@ -46,6 +46,5 @@ INNER JOIN kunzu ON kunzu.ku_id = kunde.ku_id
export async function fetchCustomersFromSql() { export async function fetchCustomersFromSql() {
const pool = await getPool(); const pool = await getPool();
const result = await pool.request().query(CUSTOMERS_QUERY); const result = await pool.request().query(CUSTOMERS_QUERY);
console.log(result);
return result.recordset; return result.recordset;
} }