Removes padding from the live header

This commit is contained in:
Vitor Pamplona 2023-06-26 15:39:32 -04:00
parent 3b5d792562
commit 4dbc71d577

View File

@ -189,9 +189,7 @@ private fun FeedLoaded(
val listState = rememberLazyListState()
LazyColumn(
contentPadding = PaddingValues(
top = 10.dp
),
contentPadding = PaddingValues(),
state = listState
) {
itemsIndexed(state.feed.value, key = { _, item -> item.idHex }) { _, item ->