From 22dc9647f39a1d60edbbb0f1a161d510e68b733f Mon Sep 17 00:00:00 2001 From: Aldo Mihasi Date: Tue, 23 May 2023 17:18:06 +0300 Subject: [PATCH] remove unused variable --- dmp-frontend/src/app/ui/user-profile/user-profile.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmp-frontend/src/app/ui/user-profile/user-profile.component.ts b/dmp-frontend/src/app/ui/user-profile/user-profile.component.ts index 0cd1f1086..30c60921b 100644 --- a/dmp-frontend/src/app/ui/user-profile/user-profile.component.ts +++ b/dmp-frontend/src/app/ui/user-profile/user-profile.component.ts @@ -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') },