chore: remove force unwraps (#30)

Reviewed-on: https://git.reya.su/reya/coop-mobile/pulls/30
This commit is contained in:
2026-06-28 02:06:57 +00:00
parent d5ea5570b6
commit 3943e2baab
4 changed files with 32 additions and 16 deletions
@@ -741,7 +741,7 @@ fun ChatRoom(room: Room, onClick: () -> Unit) {
supportingContent = {
if (!room.lastMessage.isNullOrBlank()) {
Text(
text = room.lastMessage!!,
text = room.lastMessage ?: "",
style = MaterialTheme.typography.bodyMedium,
overflow = TextOverflow.Ellipsis,
maxLines = 1,