Use .value instead of .toString().

This commit is contained in:
Benoit Marty 2025-09-11 17:04:58 +02:00
parent 1fe2eceb9a
commit d06c9de08c
5 changed files with 6 additions and 6 deletions

View file

@ -242,7 +242,7 @@ private fun RoomMemberActionsBottomSheet(
)
}
Text(
text = user.userId.toString(),
text = user.userId.value,
style = ElementTheme.typography.fontBodyLgRegular,
color = ElementTheme.colors.textSecondary,
maxLines = 1,