fix: 쿠폰 사용 - 쿠폰 사용 완료 안내 문구 수정

This commit is contained in:
Klaus 2025-06-09 17:17:52 +09:00
parent 9ed717fb95
commit 8db5c6443d
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ class ChargeService(
chargeRepository.save(couponCharge)
member.charge(0, coupon.can, "pg")
return "쿠폰 사용이 완료되었습니다. ${coupon.can}캔이 지급되었습니다."
return "쿠폰 사용이 완료되었습니다.\n${coupon.can}캔이 지급되었습니다."
}
CouponType.POINT -> {
@ -121,7 +121,7 @@ class ChargeService(
)
)
return "쿠폰 사용이 완료되었습니다. ${coupon.can}포인트가 지급되었습니다."
return "쿠폰 사용이 완료되었습니다.\n${coupon.can}포인트가 지급되었습니다."
}
}
}