From d8345c5e0e112949a794e31927a9c00d9ecb9232 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Tue, 19 Jan 2021 15:20:59 -0400 Subject: [PATCH] fix: Adding contacts via profile settings --- ui/app/AppLayouts/Profile/Sections/ContactsContainer.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Profile/Sections/ContactsContainer.qml b/ui/app/AppLayouts/Profile/Sections/ContactsContainer.qml index f393e7f392..cfb8f3561b 100644 --- a/ui/app/AppLayouts/Profile/Sections/ContactsContainer.qml +++ b/ui/app/AppLayouts/Profile/Sections/ContactsContainer.qml @@ -217,7 +217,7 @@ Item { disabled: !contactToAddInfo.visible anchors.bottom: parent.bottom onClicked: { - profileModel.addContact(profileModel.contacts.contactToAddPubKey); + profileModel.contacts.addContact(profileModel.contacts.contactToAddPubKey); addContactModal.close() } }