From 371d6d538a90c6b453d854549e73d0dc348f3258 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 29 Aug 2023 23:29:05 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EB=8C=80?= =?UTF-8?q?=EC=97=AC=EA=B0=80=EA=B2=A9=2060%=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Content/Detail/ContentOrderConfirmDialogView.swift | 2 +- SodaLive/Sources/Content/Detail/ContentOrderDialogView.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SodaLive/Sources/Content/Detail/ContentOrderConfirmDialogView.swift b/SodaLive/Sources/Content/Detail/ContentOrderConfirmDialogView.swift index da37545..f8f4e63 100644 --- a/SodaLive/Sources/Content/Detail/ContentOrderConfirmDialogView.swift +++ b/SodaLive/Sources/Content/Detail/ContentOrderConfirmDialogView.swift @@ -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")) diff --git a/SodaLive/Sources/Content/Detail/ContentOrderDialogView.swift b/SodaLive/Sources/Content/Detail/ContentOrderDialogView.swift index c1cc0d2..9abc6e7 100644 --- a/SodaLive/Sources/Content/Detail/ContentOrderDialogView.swift +++ b/SodaLive/Sources/Content/Detail/ContentOrderDialogView.swift @@ -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")) }