mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
Delete confirmation tweak
This commit is contained in:
parent
3346844584
commit
20322af5df
1 changed files with 2 additions and 3 deletions
|
|
@ -863,13 +863,12 @@ export class ClineProvider implements vscode.WebviewViewProvider {
|
|||
if (message.text) {
|
||||
|
||||
const answer = await vscode.window.showInformationMessage(
|
||||
"What would you like to delete this api config?",
|
||||
"Are you sure you want to delete this configuration profile?",
|
||||
{ modal: true },
|
||||
"Yes",
|
||||
"No",
|
||||
)
|
||||
|
||||
if (answer === "No" || answer === undefined) {
|
||||
if (answer !== "Yes") {
|
||||
break
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue