We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b30b5 commit 275912aCopy full SHA for 275912a
1 file changed
backend/src/api/controllers/dev.ts
@@ -285,7 +285,7 @@ async function updateUser(uid: string): Promise<void> {
285
}
286
287
//update testActivity
288
- await updateTestActicity(uid);
+ await updateTestActivity(uid);
289
290
291
//update the user
@@ -317,7 +317,7 @@ function createArray<T>(size: number, builder: () => T): T[] {
317
return new Array(size).fill(0).map(() => builder());
318
319
320
-async function updateTestActicity(uid: string): Promise<void> {
+async function updateTestActivity(uid: string): Promise<void> {
321
await ResultDal.getResultCollection()
322
.aggregate(
323
[
0 commit comments