Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
fix categories screen cards spacing (#2890)
Browse files Browse the repository at this point in the history
  • Loading branch information
nvllz authored Jan 23, 2024
1 parent 15916f5 commit 8423199
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ private fun BoxWithConstraintsScope.UI(
}

items(state.categories, key = { it.category.id }) { categoryData ->
Spacer(Modifier.height(16.dp))
CategoryCard(
currency = state.baseCurrency,
categoryData = categoryData,
Expand Down Expand Up @@ -233,9 +234,6 @@ private fun CategoryCard(
onClick = onClick
)
) {
// Emitting content
Spacer(Modifier.height(16.dp))

CategoryHeader(
categoryData = categoryData,
currency = currency,
Expand Down

0 comments on commit 8423199

Please sign in to comment.