chore: fix linting errors

This commit is contained in:
Dries Augustyns
2026-02-17 19:09:01 +01:00
parent e4e334c77a
commit d9ae171cc7
2 changed files with 2 additions and 4 deletions
@@ -18,8 +18,6 @@ import {SegmentService} from '../services/SegmentService.js';
* - For segments without trackMembership: only update counts
*/
async function processProjectSegments(projectId: string, projectName?: string): Promise<void> {
const logPrefix = projectName ? `${projectName} (${projectId})` : projectId;
// Get all segments for this project, separating tracked vs non-tracked
const segments = await prisma.segment.findMany({
where: {projectId},