diff --git a/apps/ios/Shared/Views/ChatList/UserPicker.swift b/apps/ios/Shared/Views/ChatList/UserPicker.swift index 62d6876af8..8d85466b15 100644 --- a/apps/ios/Shared/Views/ChatList/UserPicker.swift +++ b/apps/ios/Shared/Views/ChatList/UserPicker.swift @@ -105,7 +105,9 @@ struct UserPicker: View { } else { ThemeManager.applyTheme(DefaultTheme.LIGHT.themeName) } - userPickerVisible.toggle() + withAnimation { + userPickerVisible.toggle() + } }.padding(.bottom, 7) } }