From 1fa2d1cb0da8e516f9a02ab77b72f7d8b42d00bf Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 28 Oct 2024 23:58:05 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=ED=9B=84?= =?UTF-8?q?=EC=9B=90=20-=20=EB=B9=84=EB=B0=80=ED=9B=84=EC=9B=90=EC=9D=84?= =?UTF-8?q?=20=EC=B2=B4=ED=81=AC=ED=95=98=EB=A9=B4=20=ED=9E=8C=ED=8A=B8=20?= =?UTF-8?q?=EB=A9=94=EC=8B=9C=EC=A7=80=EC=97=90=20'=EB=B9=84=EB=B0=80'=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20-=20=ED=9B=84=EC=9B=90=EB=A9=94=EC=8B=9C?= =?UTF-8?q?=EC=A7=80=20=EC=B5=9C=EB=8C=80=20=EA=B8=B8=EC=9D=B4=2050=20->?= =?UTF-8?q?=20200=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/LiveRoomDonationDialogView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift b/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift index 68107e6..b3489bf 100644 --- a/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift +++ b/SodaLive/Sources/Content/Detail/LiveRoomDonationDialogView.swift @@ -204,7 +204,7 @@ struct LiveRoomDonationDialogView: View { .stroke(Color.graybb, lineWidth: 1) ) - TextField("함께 보낼 메시지 입력(최대 50자)", text: $donationMessage) + TextField("함께 보낼 \(isSecret ? "비밀 " : "")메시지 입력(최대 200자)", text: $donationMessage) .font(.custom(Font.medium.rawValue, size: 13.3)) .foregroundColor(Color.grayee) .padding(13.3) @@ -279,8 +279,8 @@ struct LiveRoomDonationDialogView: View { } func limitText() { - if donationMessage.count > 50 { - donationMessage = String(donationMessage.prefix(50)) + if donationMessage.count > 200 { + donationMessage = String(donationMessage.prefix(200)) } } }