diff --git a/feature-chats/src/main/java/com/anytypeio/anytype/feature_chats/ui/ChatBubble.kt b/feature-chats/src/main/java/com/anytypeio/anytype/feature_chats/ui/ChatBubble.kt index 322ddb02a9..b6f39be808 100644 --- a/feature-chats/src/main/java/com/anytypeio/anytype/feature_chats/ui/ChatBubble.kt +++ b/feature-chats/src/main/java/com/anytypeio/anytype/feature_chats/ui/ChatBubble.kt @@ -142,7 +142,7 @@ fun Bubble( // Bubble username section if (!isUserAuthor) { Text( - text = name, + text = name.ifEmpty { stringResource(R.string.untitled) }, style = Caption1Medium, color = colorResource(id = R.color.text_primary), maxLines = 1,