Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Lammertsma committed Oct 4, 2024
1 parent 570d133 commit f544f49
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ fun DiscoverScreen(
private fun CatalogWithCategorySelection(
categoryInfoList: CategoryInfoList,
podcastList: PodcastList,

selectedCategory: CategoryInfo,
latestEpisodeList: EpisodeList,
onPodcastSelected: (PodcastInfo) -> Unit,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private fun Player(
modifier: Modifier = Modifier,
autoStart: Boolean = true
) {
LaunchedEffect(key1 = autoStart) {
LaunchedEffect(autoStart) {
if (autoStart && !episodePlayerState.isPlaying) {
play()
}
Expand Down

0 comments on commit f544f49

Please sign in to comment.