From 1ac0dfc4abccfef7375498117d8c2ca2dc95e97c Mon Sep 17 00:00:00 2001 From: CEO-OS Deploy Date: Thu, 27 Aug 2026 22:19:25 +0200 Subject: [PATCH] fix(build): remove escaped backtick in intelligence.service.ts money_raise_all query Escaped backtick (`) on line 13 caused TypeScript parser to fail on all subsequent template literals in the file. Fixes CI build failure introduced in the TradeModule commit. --- src/modules/intelligence/intelligence.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/intelligence/intelligence.service.ts b/src/modules/intelligence/intelligence.service.ts index 93e104a..b977d74 100644 --- a/src/modules/intelligence/intelligence.service.ts +++ b/src/modules/intelligence/intelligence.service.ts @@ -10,9 +10,9 @@ export interface ChQueryResult { const SAFE_QUERIES: Record) => string> = { money_raise_all: () => - \`SELECT category, subcategory, region, stage, title, content, format, tags, source, language + `SELECT category, subcategory, region, stage, title, content, format, tags, source, language FROM money_raise.knowledge_base - ORDER BY category, subcategory LIMIT 500\`, + ORDER BY category, subcategory LIMIT 500`, tables: () =>