remove unused variable

This commit is contained in:
Bernaldo Mihasi 2023-05-23 17:18:06 +03:00
parent b2f2a79a5d
commit 22dc9647f3
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ export class UserProfileComponent extends BaseComponent implements OnInit, OnDes
public removeAccount(userCredential :UserCredentialModel) {
this.dialog.open(ConfirmationDialogComponent, {
data:{
message: this.language.instant('USER-PROFILE.UNLINK-ACCOUNT-DIALOG.MESSAGE', {'accountToBeUnlinked': userCredential.email}),
message: this.language.instant('USER-PROFILE.UNLINK-ACCOUNT-DIALOG.MESSAGE'),
confirmButton: this.language.instant('USER-PROFILE.UNLINK-ACCOUNT-DIALOG.CONFIRM'),
cancelButton: this.language.instant('USER-PROFILE.UNLINK-ACCOUNT-DIALOG.CANCEL')
},