fix(messenger_contacts): Fix target name in confirm dialog for contact remove

This commit is contained in:
Shinnok 2023-10-03 13:40:36 +03:00 committed by GitHub
parent d9e6fbe0d5
commit 7cb1746c84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}
}