mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-24 23:07:25 +08:00
chore: fix check annotations for dev routes (@fehmer) (#5549)
This commit is contained in:
parent
d566ba6468
commit
e8d9ce63da
2 changed files with 1 additions and 2 deletions
|
|
@ -269,7 +269,7 @@ function randomValue<T>(values: T[]): T {
|
|||
}
|
||||
|
||||
function createArray<T>(size: number, builder: () => T): T[] {
|
||||
return new Array(size).fill(0).map((it) => builder());
|
||||
return new Array(size).fill(0).map(() => builder());
|
||||
}
|
||||
|
||||
async function updateTestActicity(uid: string): Promise<void> {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
import { Router } from "express";
|
||||
import { authenticateRequest } from "../../middlewares/auth";
|
||||
import {
|
||||
asyncHandler,
|
||||
validateConfiguration,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue