Skip to content

Commit b073808

Browse files
authored
Fix message Actions overlay view not dismissed when opening thread (#873)
* Fix message Actions overlay view not dismissed when opening thread * Update CHANGELOG.md
1 parent 305705c commit b073808

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
99
### 🐞 Fixed
1010
- Fix tapping on invisible areas on iOS 26 [#868](https://github.com/GetStream/stream-chat-swiftui/pull/868)
1111
- Fix channel view tab bar not hidden on iOS 16.0 [#870](https://github.com/GetStream/stream-chat-swiftui/pull/870)
12+
- Fix message Actions overlay view not dismissed when opening thread [#873](https://github.com/GetStream/stream-chat-swiftui/pull/873)
1213

1314
# [4.80.0](https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.80.0)
1415
_June 17, 2025_

Sources/StreamChatSwiftUI/ChatChannel/ChatChannelView.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,8 @@ public struct ChatChannelView<Factory: ViewFactory>: View, KeyboardReadable {
181181
}
182182
.onDisappear {
183183
viewModel.onViewDissappear()
184+
viewModel.reactionsShown = false
185+
messageDisplayInfo = nil
184186
}
185187
.onChange(of: presentationMode.wrappedValue, perform: { newValue in
186188
if newValue.isPresented == false {

0 commit comments

Comments
 (0)