From 7cb1746c84e62f4cc95b100fcff7bbe6c7ffaf7a Mon Sep 17 00:00:00 2001 From: Shinnok Date: Tue, 3 Oct 2023 13:40:36 +0300 Subject: [PATCH] fix(messenger_contacts): Fix target name in confirm dialog for contact remove --- ui/imports/shared/views/ProfileDialogView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/imports/shared/views/ProfileDialogView.qml b/ui/imports/shared/views/ProfileDialogView.qml index fa91ebcb53..d1086bb428 100644 --- a/ui/imports/shared/views/ProfileDialogView.qml +++ b/ui/imports/shared/views/ProfileDialogView.qml @@ -508,7 +508,7 @@ Pane { type: StatusAction.Type.Danger enabled: d.isContact && !d.isBlocked && d.contactRequestState !== Constants.ContactRequestState.Sent onTriggered: { - Global.removeContactRequested(root.mainDisplayName, root.publicKey); + Global.removeContactRequested(d.mainDisplayName, root.publicKey); moreMenu.close(); } }