Skip to content

Commit

Permalink
refactor: Don't need the "cancelled" message, user knows they cancelled
Browse files Browse the repository at this point in the history
  • Loading branch information
gadenbuie committed May 1, 2024
1 parent ff46e75 commit 815a643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shinylive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ export async function shinyliveSaveAppFromUrl(): Promise<void> {
);

if (!outputDir) {
vscode.window.showErrorMessage("Canceled: no location selected.");
return;
}

Expand Down Expand Up @@ -459,6 +458,7 @@ async function askUserForOutputLocation(
// get stuck in the "local" directory picker on remote vscode instances
lastUsedDir =
vscode.workspace.workspaceFolders?.[0].uri || vscode.Uri.file(".");

return;
}

Expand Down

0 comments on commit 815a643

Please sign in to comment.