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:
parent
ad51bd2930
commit
1ac0dfc4ab
1 changed files with 2 additions and 2 deletions
|
|
@ -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: () =>
|
||||
|
|
|
|||
Loading…
Reference in a new issue