Skip to content

Commit 41d14bf

Browse files
authored
fix: condition not needed for protocol display in group conversation (WPB-15205) (#3775)
1 parent 58d3802 commit 41d14bf

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

app/src/main/kotlin/com/wire/android/ui/home/conversations/details/options/GroupConversationOptions.kt

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,10 @@ fun GroupConversationSettings(
169169
onCheckedChange = onReadReceiptSwitchClicked
170170
)
171171
}
172-
if (state.mlsEnabled) {
173-
item {
174-
ConversationProtocolDetails(
175-
protocolInfo = state.protocolInfo
176-
)
177-
}
172+
item {
173+
ConversationProtocolDetails(
174+
protocolInfo = state.protocolInfo
175+
)
178176
}
179177
}
180178
}

0 commit comments

Comments
 (0)