From 0f1de35e6231963e059fa4cc736e34616e604a2c Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 30 Aug 2024 17:50:39 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=83=81?= =?UTF-8?q?=EC=84=B8=20-=20=EB=B9=84=EB=B0=80=EB=8C=93=EA=B8=80=20?= =?UTF-8?q?=EB=93=B1=EB=A1=9D=20-=20=EB=B9=84=EB=B0=80=EB=8C=93=EA=B8=80?= =?UTF-8?q?=20=EC=B2=B4=ED=81=AC=EB=B0=95=EC=8A=A4=20=EC=9D=B4=EB=AF=B8?= =?UTF-8?q?=EC=A7=80=20=EB=84=A4=EB=AA=A8=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 --- .../Content/Detail/Comment/ContentDetailCommentView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SodaLive/Sources/Content/Detail/Comment/ContentDetailCommentView.swift b/SodaLive/Sources/Content/Detail/Comment/ContentDetailCommentView.swift index 8a757ff..2651b9a 100644 --- a/SodaLive/Sources/Content/Detail/Comment/ContentDetailCommentView.swift +++ b/SodaLive/Sources/Content/Detail/Comment/ContentDetailCommentView.swift @@ -34,13 +34,13 @@ struct ContentDetailCommentView: View { if isShowSecret && commentCount <= 0 { HStack(spacing: 8) { - Image(isSecret ? "btn_select_checked" : "btn_select_normal") + Image(isSecret ? "btn_square_select_checked" : "btn_square_select_normal") .resizable() .frame(width: 20, height: 20) Text("비밀댓글") .font(.custom(Font.medium.rawValue, size: 12)) - .foregroundColor(Color.grayee) + .foregroundColor(isSecret ? Color.button : Color.grayee) } .onTapGesture { isSecret.toggle()