From 68f212a679d668bd6be4d84c256929bd22188016 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 19 Mar 2025 20:17:43 +0200 Subject: [PATCH] refactor(types): unnecessary any --- src/public/app/utils/mutex.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {