From 3916a49e60e1da2f3abd46c71d7e0198dd05bb5a Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 28 Aug 2023 18:20:58 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EB=93=B1?= =?UTF-8?q?=EB=A1=9D=20-=205=EC=BA=94(500=EC=9B=90)=20=EB=B6=80=ED=84=B0?= =?UTF-8?q?=20=EB=93=B1=EB=A1=9D=EB=90=98=EB=8F=84=EB=A1=9D=20=EC=88=98?= =?UTF-8?q?=EC=A0=95,=20=EB=8C=80=EC=97=AC=EA=B0=80=EA=B2=A9=20=EC=95=88?= =?UTF-8?q?=EB=82=B4=2060%=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Content/Create/ContentCreateView.swift | 6 +++--- .../Sources/Content/Create/ContentCreateViewModel.swift | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SodaLive/Sources/Content/Create/ContentCreateView.swift b/SodaLive/Sources/Content/Create/ContentCreateView.swift index 5e83807..1e34034 100644 --- a/SodaLive/Sources/Content/Create/ContentCreateView.swift +++ b/SodaLive/Sources/Content/Create/ContentCreateView.swift @@ -221,7 +221,7 @@ struct ContentCreateView: View { .frame(maxWidth: .infinity, alignment: .leading) HStack(spacing: 0) { - TextField("가격을 입력하세요(10캔 이상)", text: $viewModel.priceString) + TextField("가격을 입력하세요(5캔 이상)", text: $viewModel.priceString) .autocapitalization(.none) .disableAutocorrection(true) .font(.custom(Font.bold.rawValue, size: 14.7)) @@ -253,12 +253,12 @@ struct ContentCreateView: View { .frame(maxWidth: .infinity, alignment: .leading) .padding(.top, 13.3) - Text("※ 대여가격은 소장가격의 70%로 자동 반영") + Text("※ 대여가격은 소장가격의 60%로 자동 반영") .font(.custom(Font.medium.rawValue, size: 13.3)) .foregroundColor(Color(hex: "777777")) .frame(maxWidth: .infinity, alignment: .leading) - Text("※ 콘텐츠의 최소금액은 10캔 입니다") + Text("※ 콘텐츠의 최소금액은 5캔 입니다") .font(.custom(Font.medium.rawValue, size: 13.3)) .foregroundColor(Color(hex: "777777")) .frame(maxWidth: .infinity, alignment: .leading) diff --git a/SodaLive/Sources/Content/Create/ContentCreateViewModel.swift b/SodaLive/Sources/Content/Create/ContentCreateViewModel.swift index 33b7855..2f11e08 100644 --- a/SodaLive/Sources/Content/Create/ContentCreateViewModel.swift +++ b/SodaLive/Sources/Content/Create/ContentCreateViewModel.swift @@ -205,8 +205,8 @@ final class ContentCreateViewModel: ObservableObject { return false } - if !isFree && price < 10 { - errorMessage = "콘텐츠의 최소금액은 10캔 입니다." + if !isFree && price < 5 { + errorMessage = "콘텐츠의 최소금액은 5캔 입니다." isShowPopup = true return false }