코인 -> 캔 변경
This commit is contained in:
@@ -221,7 +221,7 @@ struct ContentCreateView: View {
|
||||
.frame(maxWidth: .infinity, alignment: .leading)
|
||||
|
||||
HStack(spacing: 0) {
|
||||
TextField("가격을 입력하세요(10코인 이상)", text: $viewModel.priceString)
|
||||
TextField("가격을 입력하세요(10캔 이상)", text: $viewModel.priceString)
|
||||
.autocapitalization(.none)
|
||||
.disableAutocorrection(true)
|
||||
.font(.custom(Font.bold.rawValue, size: 14.7))
|
||||
@@ -232,7 +232,7 @@ struct ContentCreateView: View {
|
||||
|
||||
Spacer()
|
||||
|
||||
Text("코인")
|
||||
Text("캔")
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.foregroundColor(Color(hex: "777777"))
|
||||
}
|
||||
@@ -258,7 +258,7 @@ struct ContentCreateView: View {
|
||||
.foregroundColor(Color(hex: "777777"))
|
||||
.frame(maxWidth: .infinity, alignment: .leading)
|
||||
|
||||
Text("※ 콘텐츠의 최소금액은 10코인 입니다")
|
||||
Text("※ 콘텐츠의 최소금액은 10캔 입니다")
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.foregroundColor(Color(hex: "777777"))
|
||||
.frame(maxWidth: .infinity, alignment: .leading)
|
||||
|
@@ -206,7 +206,7 @@ final class ContentCreateViewModel: ObservableObject {
|
||||
}
|
||||
|
||||
if !isFree && price < 10 {
|
||||
errorMessage = "콘텐츠의 최소금액은 10코인 입니다."
|
||||
errorMessage = "콘텐츠의 최소금액은 10캔 입니다."
|
||||
isShowPopup = true
|
||||
return false
|
||||
}
|
||||
|
Reference in New Issue
Block a user