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.
This commit is contained in:
CEO-OS Deploy 2026-08-27 22:19:25 +02:00
parent ad51bd2930
commit 1ac0dfc4ab

View file

@ -10,9 +10,9 @@ export interface ChQueryResult {
const SAFE_QUERIES: Record<string, (params: Record<string, string>) => 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: () =>