Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FadhlanR committed Jan 30, 2025
1 parent cd5cc5f commit fe0ba01
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/runtime-common/index-query-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,9 @@ export class IndexQueryEngine {
let usedRenderTypeColumnExpression = [];
if (htmlFormat && htmlFormat !== 'atom' && renderType) {
usedRenderTypeColumnExpression.push(`CASE`);
usedRenderTypeColumnExpression.push(`WHEN ANY_VALUE(${htmlFormat}_html) ->> `);
usedRenderTypeColumnExpression.push(
`WHEN ANY_VALUE(${htmlFormat}_html) ->> `,
);
usedRenderTypeColumnExpression.push(
param(internalKeyFor(renderType, undefined)),
);
Expand Down

0 comments on commit fe0ba01

Please sign in to comment.