Skip to content

Commit 275912a

Browse files
committed
fix
1 parent 83b30b5 commit 275912a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • backend/src/api/controllers

backend/src/api/controllers/dev.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ async function updateUser(uid: string): Promise<void> {
285285
}
286286

287287
//update testActivity
288-
await updateTestActicity(uid);
288+
await updateTestActivity(uid);
289289
}
290290

291291
//update the user
@@ -317,7 +317,7 @@ function createArray<T>(size: number, builder: () => T): T[] {
317317
return new Array(size).fill(0).map(() => builder());
318318
}
319319

320-
async function updateTestActicity(uid: string): Promise<void> {
320+
async function updateTestActivity(uid: string): Promise<void> {
321321
await ResultDal.getResultCollection()
322322
.aggregate(
323323
[

0 commit comments

Comments
 (0)