콘텐츠 대여가격 60%로 변경

This commit is contained in:
Yu Sung 2023-08-29 23:29:05 +09:00
parent 2aa3f944c8
commit 371d6d538a
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ struct ContentOrderConfirmDialogView: View {
.resizable()
.frame(width: 16.7, height: 16.7)
Text("\(orderType == .RENTAL ? Int(ceil(Double(audioContent.price) * 0.7)) : audioContent.price)")
Text("\(orderType == .RENTAL ? Int(ceil(Double(audioContent.price) * 0.6)) : audioContent.price)")
.font(.custom(Font.bold.rawValue, size: 13.3))
.foregroundColor(Color(hex: "eeeeee"))

View File

@ -43,7 +43,7 @@ struct ContentOrderDialogView: View {
.resizable()
.frame(width: 16.7, height: 16.7)
Text("\(Int(ceil(Double(price) * 0.7)))")
Text("\(Int(ceil(Double(price) * 0.6)))")
.font(.custom(Font.bold.rawValue, size: 13.3))
.foregroundColor(Color(hex: "eeeeee"))
}