Skip to content

Commit 605c95a

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

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
@@ -448,12 +448,12 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
448448
commands.registerCommand('python-envs.reportIssue', async () => {
449449
try {
450450
// Prompt for issue title
451-
const title = await window.showInputBox({
451+
const title = (await window.showInputBox({
452452
title: l10n.t('Report Issue - Title'),
453453
prompt: l10n.t('Enter a brief title for the issue'),
454454
placeHolder: l10n.t('e.g., Environment not detected, activation fails, etc.'),
455455
ignoreFocusOut: true,
456-
}).trim();
456+
})).trim();
457457

458458
if (!title) {
459459
// User cancelled or provided empty title

0 commit comments

Comments
 (0)