From b9b43c82605fbb4a57f1982e568fe0eebd5a6a6b Mon Sep 17 00:00:00 2001 From: Diogo Date: Fri, 13 Dec 2024 23:19:37 +0000 Subject: [PATCH] reset selection of tag filter on profile changes --- apps/ios/Shared/Views/ChatList/ChatListView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/ios/Shared/Views/ChatList/ChatListView.swift b/apps/ios/Shared/Views/ChatList/ChatListView.swift index eb21fc049b..089ea56203 100644 --- a/apps/ios/Shared/Views/ChatList/ChatListView.swift +++ b/apps/ios/Shared/Views/ChatList/ChatListView.swift @@ -836,6 +836,7 @@ struct ChatTagsView: View { self.chatTagsModel.tags = chatTags.map { .chatTag(emoji: $0.chatTagEmoji, text: $0.chatTagText, tagId: $0.chatTagId) } + self.chatTagsModel.selectedTag = ChatTagsModel.defaultTag } } catch let error { AlertManager.shared.showAlertMsg(title: "Error", message: "\(responseError(error))")