Skip to content

Commit ec2b42d

Browse files
committed
fix: lint
1 parent 8f7992e commit ec2b42d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

controlplane/src/core/bufservices/analytics/getOperationClients.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ export function getOperationClients(
7070
const parsedDateRange = isoDateRangeToTimestamps(validatedDateRange, range || 24);
7171
const [startTimestamp, endTimestamp] = getDateRange(parsedDateRange);
7272

73-
const operationNameFilter = req.operationName === undefined ? '' : `AND OperationName = '${req.operationName.replace(/'/g, "''")}'`;
73+
const operationNameFilter =
74+
req.operationName === undefined ? '' : `AND OperationName = '${req.operationName.replace(/'/g, "''")}'`;
7475

7576
const query = `
7677
WITH

0 commit comments

Comments
 (0)