From af24378fa9a65b10dc5b4fa60209f2ef0e5d3b01 Mon Sep 17 00:00:00 2001 From: Kgothatso Ngako Date: Mon, 1 Jun 2026 01:50:28 +0200 Subject: [PATCH] Remove debugging for participants --- .../compose/ui/composable/ChatRoomDetailScreen.kt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/composeApp/src/commonMain/kotlin/ac/cord/auxiliary/compose/ui/composable/ChatRoomDetailScreen.kt b/composeApp/src/commonMain/kotlin/ac/cord/auxiliary/compose/ui/composable/ChatRoomDetailScreen.kt index 2b3f4b3b..54ba1624 100644 --- a/composeApp/src/commonMain/kotlin/ac/cord/auxiliary/compose/ui/composable/ChatRoomDetailScreen.kt +++ b/composeApp/src/commonMain/kotlin/ac/cord/auxiliary/compose/ui/composable/ChatRoomDetailScreen.kt @@ -83,11 +83,9 @@ fun ChatRoomDetailScreen( Column( modifier = Modifier.padding(innerPadding) ) { - chatRoomDetailUIState.localChatRoom.participants.forEach { participant -> - Text( - "- ${participant.profile?.humanReadableNameOrPubkey() ?: participant.participant.participantPublicKey}" - ) - } + Text( + text = "Messages will appear here..." + ) } } }