From 8d57e0aa2edcf85588f1d8a2e0fa55df14e5f9ef Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 12 Feb 2025 23:01:13 +0700 Subject: [PATCH] Fix typo Signed-off-by: Andrey Sobolev --- server/account/src/operations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/account/src/operations.ts b/server/account/src/operations.ts index 551f12e77f..5c36039320 100644 --- a/server/account/src/operations.ts +++ b/server/account/src/operations.ts @@ -1317,7 +1317,7 @@ export async function performWorkspaceOperation ( switch (event) { case 'delete': if (workspaceInfo.mode !== 'active') { - throw new PlatformError(unknownError('Archive allowed only for active workspaces')) + throw new PlatformError(unknownError('Delete allowed only for active workspaces')) } update.mode = 'pending-deletion'