Skip to content

Commit

Permalink
[1.133.*] Pre-release merge (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
tramline-github[bot] authored Apr 18, 2024
2 parents 71c5ac3 + 544291f commit d289684
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ class HomePresenter(
after = postsAfter
)
}
.distinctUntilChanged()
.onEach { featuredPosts ->
val featuredPostIds = featuredPosts.map { it.id }
val postsType = _state.value.postsType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ import androidx.compose.foundation.layout.only
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.requiredHeight
import androidx.compose.foundation.layout.requiredSize
import androidx.compose.foundation.layout.statusBars
import androidx.compose.foundation.layout.systemBars
import androidx.compose.foundation.layout.windowInsetsPadding
import androidx.compose.foundation.lazy.LazyListState
Expand Down Expand Up @@ -305,7 +304,7 @@ private fun HomeScreenContent(
PullRefreshIndicator(
refreshing = state.isRefreshing,
state = swipeRefreshState,
modifier = Modifier.windowInsetsPadding(WindowInsets.statusBars).align(Alignment.TopCenter)
modifier = Modifier.align(Alignment.TopCenter)
)
}
}
Expand Down

0 comments on commit d289684

Please sign in to comment.