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()