Added max height to new chat peer suggestions

This commit is contained in:
Juha Heinanen
2025-05-03 13:37:19 +03:00
parent cdeb19d1c3
commit bd2ab1aca6

View File

@ -517,7 +517,10 @@ class ChatsActivity: ComponentActivity() {
)
.animateContentSize()
) {
Box(modifier = Modifier.fillMaxWidth()) {
Box(modifier = Modifier
.fillMaxWidth()
.heightIn(max = 150.dp)
) {
LazyColumn(
modifier = Modifier
.fillMaxWidth()