feat: render bio in profile sheet

Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
Infi 2024-06-05 16:06:39 +02:00
parent 7894364d84
commit baeda794f8
1 changed files with 1 additions and 5 deletions

View File

@ -318,11 +318,7 @@ fun UserInfoSheet(
Text(stringResource(R.string.user_info_sheet_category_bio))
},
contentPreview = {
Text(
text = profile?.content!!,
maxLines = 4,
overflow = TextOverflow.Ellipsis
)
RichMarkdown(input = profile?.content!!)
}
) {
SelectionContainer(modifier = Modifier.verticalScroll(rememberScrollState())) {