From 7b67e25733d0f1a226658ec8ef5b9f1ac98132aa Mon Sep 17 00:00:00 2001 From: Diogo Date: Tue, 27 Aug 2024 17:53:55 +0100 Subject: [PATCH] close user picker on list profiles --- apps/ios/Shared/Views/ChatList/UserPicker.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/ios/Shared/Views/ChatList/UserPicker.swift b/apps/ios/Shared/Views/ChatList/UserPicker.swift index 33c651550f..4871310ba9 100644 --- a/apps/ios/Shared/Views/ChatList/UserPicker.swift +++ b/apps/ios/Shared/Views/ChatList/UserPicker.swift @@ -41,6 +41,7 @@ struct UserPicker: View { .onTapGesture { showSettings = false activeSheet = .currentProfile + userPickerVisible.toggle() } Spacer() ForEach(usersToPreview) { u in @@ -55,6 +56,7 @@ struct UserPicker: View { .onTapGesture { showSettings = false activeSheet = .chatProfiles + } } .padding(.horizontal, 16)