From 7acacee80ec659fa506b2eb5f44fb6d573ae8f63 Mon Sep 17 00:00:00 2001 From: Alexandra Betouni Date: Mon, 20 Jun 2022 13:12:43 +0300 Subject: [PATCH] fix(CreateChatView): clicking new group chat duplicates contacts Closes #6135 --- ui/app/AppLayouts/Chat/views/CreateChatView.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/app/AppLayouts/Chat/views/CreateChatView.qml b/ui/app/AppLayouts/Chat/views/CreateChatView.qml index f168bfe2eb..670a4cb377 100644 --- a/ui/app/AppLayouts/Chat/views/CreateChatView.qml +++ b/ui/app/AppLayouts/Chat/views/CreateChatView.qml @@ -49,6 +49,7 @@ Page { } tagSelector.sortModel(root.contactsModel); } else { + contactsModel.clear(); tagSelector.namesModel.clear(); } }