Skip to content

Commit

Permalink
Cleanup text
Browse files Browse the repository at this point in the history
  • Loading branch information
backwardstruck committed Oct 1, 2024
1 parent 3a39dbd commit 6d9f24e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ fun CouponFormSection(
horizontalArrangement = Arrangement.SpaceBetween
) {
Column {
Text(text = "Coupon: ${coupon.code}")
Text(text = "Discount: ${coupon.discount}")
Text(text = coupon.code)
Text(text = " ${coupon.discount}")
}
IconButton(onClick = { onRemoveCoupon(coupon.code) }) {
Icon(
Expand Down

0 comments on commit 6d9f24e

Please sign in to comment.