Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Adamski committed Jan 23, 2025
1 parent d243a0b commit fbbb298
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/validate_live_pixel.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function main() {
}

function queryClickhouse(pixelDefs) {
let agents = "'" + productDef.agents.join("','") + "'";
const agents = "'" + productDef.agents.join("','") + "'";
const agentString = productDef.agents.length ? `AND agent IN (${agents})` : '';

const pixelQueryResults = {};
Expand All @@ -65,7 +65,7 @@ function queryClickhouse(pixelDefs) {
}

function validateQueryForPixels(prefix, pixelQuery, paramsValidator) {
let minVersion = productDef.target;
const minVersion = productDef.target;

const lines = pixelQuery.split('\n');
console.log(`Received ${lines.length} results`)
Expand Down

0 comments on commit fbbb298

Please sign in to comment.