Remove debugging for participants

This commit is contained in:
Kgothatso Ngako
2026-06-01 01:50:28 +02:00
parent 5983ed7ef1
commit af24378fa9

View File

@@ -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..."
)
}
}
}