fix: contact list ordering (#3863)

This commit is contained in:
Mac DeCourcy 2025-11-30 09:40:10 -08:00 committed by GitHub
parent e18f72dbf2
commit c27df15d0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -522,8 +522,8 @@ private fun ContactListContentInternal(
modifier: Modifier = Modifier,
) {
LazyColumn(modifier = modifier.fillMaxSize(), state = listState) {
contactListPlaceholdersItems(
visiblePlaceholders = visiblePlaceholders,
contactListPagedItems(
contacts = contacts,
selectedList = selectedList,
activeContactKey = activeContactKey,
onClick = onClick,
@ -533,8 +533,8 @@ private fun ContactListContentInternal(
haptics = haptics,
)
contactListPagedItems(
contacts = contacts,
contactListPlaceholdersItems(
visiblePlaceholders = visiblePlaceholders,
selectedList = selectedList,
activeContactKey = activeContactKey,
onClick = onClick,