Skip to content

Commit e880b51

Browse files
committed
update dialog
1 parent 44f72ad commit e880b51

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/managers/builtin/pipUtils.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -380,13 +380,7 @@ export async function shouldProceedAfterPyprojectValidation(
380380
const continueButton = { title: Pickers.pyProject.continueAnyway };
381381
const cancelButton = { title: Pickers.pyProject.cancel, isCloseAffordance: true };
382382

383-
const selection = await window.showErrorMessage(
384-
validationError.message,
385-
{ modal: true },
386-
openButton,
387-
continueButton,
388-
cancelButton,
389-
);
383+
const selection = await window.showErrorMessage(validationError.message, openButton, continueButton, cancelButton);
390384

391385
if (selection === continueButton) {
392386
return true;

0 commit comments

Comments
 (0)