From 52a6c821f4632e4b5b51e0528a0d620e2e0deffc Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 14 Apr 2026 20:30:34 -0500 Subject: [PATCH] fix(datamart): error when running build and crashed everything --- backend/datamart/datamart.controller.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/datamart/datamart.controller.ts b/backend/datamart/datamart.controller.ts index da36462..1fc7823 100644 --- a/backend/datamart/datamart.controller.ts +++ b/backend/datamart/datamart.controller.ts @@ -13,7 +13,6 @@ * * when a criteria is password over we will handle it by counting how many were passed up to 3 then deal with each one respectively */ -import { createLogger } from "../logger/logger.controller.js"; import { prodQuery } from "../prodSql/prodSqlQuery.controller.js"; import { type SqlQuery, @@ -30,7 +29,6 @@ type Data = { howManyOptionsRequired?: number; }; -const log = createLogger({ module: "datamart", submodule: "queryRun" }); export const runDatamartQuery = async (data: Data) => { // search the query db for the query by name const sqlQuery = sqlQuerySelector(`datamart.${data.name}`) as SqlQuery;