android, desktop: fix operators text (#5371)

This commit is contained in:
spaced4ndy
2024-12-12 11:26:17 +04:00
committed by GitHub
parent 5d8e11c3a2
commit 708368c9c5
@@ -735,7 +735,10 @@ private fun ConditionsAppliedToOtherOperatorsText(userServers: List<UserOperator
}
if (otherOperatorsToApply.value.isNotEmpty()) {
ReadableText(MR.strings.operator_conditions_will_be_applied)
ReadableText(
MR.strings.operator_conditions_will_be_applied,
args = otherOperatorsToApply.value.joinToString(", ") { it.legalName_ }
)
}
}