diff --git a/shared/ui/src/commonMain/kotlin/com/androidmakers/ui/agenda/AgendaRow.kt b/shared/ui/src/commonMain/kotlin/com/androidmakers/ui/agenda/AgendaRow.kt index dcc1c54d..b0e82a83 100644 --- a/shared/ui/src/commonMain/kotlin/com/androidmakers/ui/agenda/AgendaRow.kt +++ b/shared/ui/src/commonMain/kotlin/com/androidmakers/ui/agenda/AgendaRow.kt @@ -183,10 +183,12 @@ internal fun SessionRow( private fun UISession.subtitle() = buildString { append(formattedDuration()) - append(" / $room") - val emoji = EmojiUtils.getLanguageInEmoji(language) - if (emoji != null) { - append(" / $emoji") + if (!isServiceSession ) { + append(" / $room") + val emoji = EmojiUtils.getLanguageInEmoji(language) + if (emoji != null) { + append(" / $emoji") + } } }