Skip to content

Commit 25926a4

Browse files
committed
chore: fix linting
1 parent b5c8c73 commit 25926a4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

apps/backend/src/system/reports/reports.service.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class ReportsService {
2424
],
2525
});
2626

27-
const columnKeys = new Set(['participant'])
27+
const columnKeys = new Set(["participant"]);
2828

2929
const evaluatedExposurePerParticipant = participants.map((participant) => {
3030
const exposure = this.getParticipantExposure(participant);
@@ -36,7 +36,10 @@ export class ReportsService {
3636
acc[`L${index + 1}`] = duration / exposureSum;
3737
acc[`L${index + 1}_id`] = language.id;
3838
acc[`L${index + 1}_name`] = language.name;
39-
columnKeys.add(`L${index + 1}`).add(`L${index + 1}_id`).add(`L${index + 1}_name`)
39+
columnKeys
40+
.add(`L${index + 1}`)
41+
.add(`L${index + 1}_id`)
42+
.add(`L${index + 1}_name`);
4043

4144
return acc;
4245
},

0 commit comments

Comments
 (0)