diff --git a/CHANGELOG.md b/CHANGELOG.md index a7c252046..554502f5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### 🐞 Fixed - Fix tapping on invisible areas on iOS 26 [#868](https://github.com/GetStream/stream-chat-swiftui/pull/868) - Fix channel view tab bar not hidden on iOS 16.0 [#870](https://github.com/GetStream/stream-chat-swiftui/pull/870) +- Fix message Actions overlay view not dismissed when opening thread [#873](https://github.com/GetStream/stream-chat-swiftui/pull/873) # [4.80.0](https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.80.0) _June 17, 2025_ diff --git a/Sources/StreamChatSwiftUI/ChatChannel/ChatChannelView.swift b/Sources/StreamChatSwiftUI/ChatChannel/ChatChannelView.swift index 11fbe2abb..42a10759b 100644 --- a/Sources/StreamChatSwiftUI/ChatChannel/ChatChannelView.swift +++ b/Sources/StreamChatSwiftUI/ChatChannel/ChatChannelView.swift @@ -181,6 +181,8 @@ public struct ChatChannelView: View, KeyboardReadable { } .onDisappear { viewModel.onViewDissappear() + viewModel.reactionsShown = false + messageDisplayInfo = nil } .onChange(of: presentationMode.wrappedValue, perform: { newValue in if newValue.isPresented == false {