Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
backwardstruck committed Oct 1, 2024
1 parent 7f545de commit 3a39dbd
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@ import java.math.BigDecimal
@Composable
fun CouponFormSection(
couponDetails: List<Order.CouponLine>,
//formatCurrency: (BigDecimal) -> String,
onRemoveCoupon: (String) -> Unit
) {
Column {
couponDetails.forEach { coupon ->
Row(
modifier = Modifier
.fillMaxWidth()
.padding(8.dp),// Adjust the padding as needed
.padding(8.dp),
horizontalArrangement = Arrangement.SpaceBetween
) {
Column {
Expand Down

0 comments on commit 3a39dbd

Please sign in to comment.