Skip to content

Commit e8d9ce6

Browse files
authored
chore: fix check annotations for dev routes (@fehmer) (#5549)
1 parent d566ba6 commit e8d9ce6

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

backend/src/api/controllers/dev.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ function randomValue<T>(values: T[]): T {
269269
}
270270

271271
function createArray<T>(size: number, builder: () => T): T[] {
272-
return new Array(size).fill(0).map((it) => builder());
272+
return new Array(size).fill(0).map(() => builder());
273273
}
274274

275275
async function updateTestActicity(uid: string): Promise<void> {

backend/src/api/routes/dev.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Router } from "express";
2-
import { authenticateRequest } from "../../middlewares/auth";
32
import {
43
asyncHandler,
54
validateConfiguration,

0 commit comments

Comments
 (0)