Skip to content

Commit

Permalink
Improve handling of states in sealed-states.command.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
PlugFox committed Aug 23, 2024
1 parent dbfb4f3 commit 4870f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/sealed-states.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4870f50

Please sign in to comment.