Skip to content

Commit 8f82033

Browse files
Update src/extension.ts
Co-authored-by: Eduardo Villalpando Mello <eduardo.villalpando.mello@gmail.com>
1 parent b63c3c2 commit 8f82033

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,12 +461,12 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
461461
}
462462

463463
// Prompt for issue description
464-
const description = await window.showInputBox({
464+
const description = (await window.showInputBox({
465465
title: l10n.t('Report Issue - Description'),
466466
prompt: l10n.t('Describe the issue in more detail'),
467467
placeHolder: l10n.t('Provide additional context about what happened...'),
468468
ignoreFocusOut: true,
469-
}).trim();
469+
})).trim();
470470

471471
if (!description) {
472472
// User cancelled or provided empty description

0 commit comments

Comments
 (0)