From 371cf83e52979621dfa226e084b98786a99ba0a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D1=84=D1=8B=D1=80=D0=B0=D1=82=20=D1=91=D0=B7=D0=B4=D1=8D?= =?UTF-8?q?=D0=BD?= <31664778+fir4tozden@users.noreply.github.com> Date: Sun, 14 Dec 2025 08:16:09 +0300 Subject: [PATCH] fix: typing --- packages/server/src/utils/docker/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/utils/docker/utils.ts b/packages/server/src/utils/docker/utils.ts index 2a1674151..abd1f678c 100644 --- a/packages/server/src/utils/docker/utils.ts +++ b/packages/server/src/utils/docker/utils.ts @@ -267,7 +267,7 @@ const excludedCleanupAllCommands: (keyof typeof cleanupCommands)[] = [ ]; export const cleanupAll = async (serverId?: string) => { - for (const [key, command] of Object.entries(cleanupCommands)) { + for (const [key, command] of Object.entries(cleanupCommands) as [keyof typeof cleanupCommands, string][]) { if (excludedCleanupAllCommands.includes(key)) continue; try {