Skip to content

Commit 5bc110d

Browse files
Composer controls not visible when overlay is shown
1 parent a45cefe commit 5bc110d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Sources/StreamChatSwiftUI/ChatChannel/ChatChannelView.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ public struct ChatChannelView<Factory: ViewFactory>: View, KeyboardReadable {
9191
editedMessage: $viewModel.editedMessage,
9292
onMessageSent: viewModel.scrollToLastMessage
9393
)
94+
.opacity((
95+
utils.messageListConfig.messagePopoverEnabled && messageDisplayInfo != nil && !viewModel
96+
.reactionsShown
97+
) ? 0 : 1)
9498
}
9599
.accentColor(colors.tintColor)
96100
.overlay(

0 commit comments

Comments
 (0)