Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
imashnake0 committed Mar 28, 2024
1 parent a946a12 commit 43a3c1f
Showing 1 changed file with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,16 +221,15 @@ fun HomeRow(

MediaSmallRow(
mediaList = list,
modifier = Modifier.padding(bottom = LocalPaddings.current.large),
content = { media ->
MediaSmall(
image = media.coverImage,
label = media.title,
onClick = { onItemClicked(media) },
modifier = Modifier.width(dimensionResource(R.dimen.media_card_width))
)
}
)
modifier = Modifier.padding(bottom = LocalPaddings.current.large)
) { media ->
MediaSmall(
image = media.coverImage,
label = media.title,
onClick = { onItemClicked(media) },
modifier = Modifier.width(dimensionResource(R.dimen.media_card_width))
)
}
}
}
}
Expand Down

0 comments on commit 43a3c1f

Please sign in to comment.