Skip to content

Commit

Permalink
fix command not found
Browse files Browse the repository at this point in the history
  • Loading branch information
amirbilu committed Dec 5, 2023
1 parent bf04414 commit e9d3649
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/enterprise/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ export async function activate(
context.subscriptions.push(activeTextEditorState);
context.subscriptions.push(
commands.registerCommand(CONFIG_COMMAND, () => {
commands.executeCommand(OPEN_SETTINGS_COMMAND, `@ext:${EXTENSION_ID}`);
void commands.executeCommand(
OPEN_SETTINGS_COMMAND,
`@ext:${EXTENSION_ID}`
);
})
);

Expand Down

0 comments on commit e9d3649

Please sign in to comment.