diff --git a/src/public/app/utils/mutex.ts b/src/public/app/utils/mutex.ts index 197e2f134..fb98ce4b6 100644 --- a/src/public/app/utils/mutex.ts +++ b/src/public/app/utils/mutex.ts @@ -16,7 +16,7 @@ export default class Mutex { return newPromise; } - async runExclusively(cb: () => Promise) { + async runExclusively(cb: () => Promise) { const unlock = await this.lock(); try {