Skip to content

Commit 78584fe

Browse files
authored
Merge pull request #887 from oracle/bugfix/PDPDEVTOOL-5991_remove_occurrences_tba
PDPDEVTOOL-5991 fixed vscode remove auth confirmation message
2 parents b809cea + 3533eea commit 78584fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/vscode-extension/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
"MANAGE_AUTH_GENERAL_SELECT_AUTH_ID_TO_MANAGE": "Select the auth ID you want to manage:",
122122
"MANAGE_AUTH_GENERAL_SELECT_OPTION_FOR_AUTH_ID": "Select one of the following options for {0}:",
123123
"MANAGE_AUTH_REMOVE_CANCEL": "Cancel",
124-
"MANAGE_AUTH_REMOVE_CONFIRMATION_MESSAGE": "This auth ID will be removed locally but still be valid in your account: {0}.",
124+
"MANAGE_AUTH_REMOVE_CONFIRMATION_MESSAGE": "The auth ID will be removed locally but the tokens are not revoked in the account.",
125125
"MANAGE_AUTH_REMOVE_CONTINUE": "Continue",
126126
"MANAGE_AUTH_REMOVE_REMOVING_AUTH_ID": "Removing auhtID...",
127127
"MANAGE_AUTH_RENAME_ENTER_NEW_AUTH_ID": "Enter the new auth ID.",

packages/vscode-extension/src/commands/ManageAuth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export default class ManageAuth extends BaseAction {
171171
CANCEL: this.translationService.getMessage(MANAGE_AUTH.REMOVE.CANCEL),
172172
};
173173
const removeAnswer = await window.showQuickPick([REMOVE_ANSWER.CONTINUE, REMOVE_ANSWER.CANCEL], {
174-
placeHolder: this.translationService.getMessage(MANAGE_AUTH.REMOVE.CONFIRMATION_MESSAGE, selectedAuhtID.authId),
174+
placeHolder: this.translationService.getMessage(MANAGE_AUTH.REMOVE.CONFIRMATION_MESSAGE),
175175
ignoreFocusOut: true,
176176
canPickMany: false,
177177
});

0 commit comments

Comments
 (0)