diff --git a/apps/ios/Shared/Views/Chat/ChatView.swift b/apps/ios/Shared/Views/Chat/ChatView.swift index 36d3e318ed..468027ec8a 100644 --- a/apps/ios/Shared/Views/Chat/ChatView.swift +++ b/apps/ios/Shared/Views/Chat/ChatView.swift @@ -979,8 +979,9 @@ struct ChatView: View { title: NSLocalizedString("Hide", comment: "chat item action"), image: UIImage(systemName: "eye.slash") ) { _ in - // With animation it looks bad because of UIKit context menu involved - revealed = false + withAnimation { + revealed = false + } } } @@ -1049,8 +1050,9 @@ struct ChatView: View { title: NSLocalizedString("Reveal", comment: "chat item action"), image: UIImage(systemName: "eye") ) { _ in - // With animation it looks bad because of UIKit context menu involved - revealed = true + withAnimation { + revealed = true + } } }