From 4870f50f06815f5f2ad8ccc15a7e88bcb61d75f9 Mon Sep 17 00:00:00 2001 From: Plague Fox Date: Fri, 23 Aug 2024 14:37:49 +0400 Subject: [PATCH] Improve handling of states in sealed-states.command.ts --- src/commands/sealed-states.command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/sealed-states.command.ts b/src/commands/sealed-states.command.ts index 32ac9db..49405af 100644 --- a/src/commands/sealed-states.command.ts +++ b/src/commands/sealed-states.command.ts @@ -43,7 +43,7 @@ export const sealedStates = async (uri: Uri) => { // Prompt the user for the list of states, defaulting to common states const statesInput = await vscode.window.showInputBox({ prompt: 'Enter the states (camelCase) separated by commas', - value: 'idle, processing, success, failure', + value: 'idle, processing, succeeded, failed', }); if (!statesInput) {