diff --git a/SodaLive/Sources/Live/Room/Detail/LiveDetailView.swift b/SodaLive/Sources/Live/Room/Detail/LiveDetailView.swift index 52ccec6..1dfc12d 100644 --- a/SodaLive/Sources/Live/Room/Detail/LiveDetailView.swift +++ b/SodaLive/Sources/Live/Room/Detail/LiveDetailView.swift @@ -76,17 +76,7 @@ struct LiveDetailView: View { ScrollView(.vertical, showsIndicators: false) { VStack(spacing: 0) { HStack(spacing: 5.3) { - if room.isAdult { - Text("19") - .appFont(size: 12, weight: .medium) - .foregroundColor(Color(hex: "e33621")) - .padding(.horizontal, 5.3) - .padding(.vertical, 3.3) - .background(Color(hex: "601d14")) - .cornerRadius(2.6) - } - - Text(room.title) + Text(room.isAdult ? "🔞 \(room.title)" : room.title) .appFont(size: 18.3, weight: .bold) .foregroundColor(Color(hex: "eeeeee")) } diff --git a/SodaLive/Sources/Live/Room/V2/Component/View/LiveRoomInfoCreatorView.swift b/SodaLive/Sources/Live/Room/V2/Component/View/LiveRoomInfoCreatorView.swift index 1fb19b2..609477b 100644 --- a/SodaLive/Sources/Live/Room/V2/Component/View/LiveRoomInfoCreatorView.swift +++ b/SodaLive/Sources/Live/Room/V2/Component/View/LiveRoomInfoCreatorView.swift @@ -54,21 +54,10 @@ struct LiveRoomInfoCreatorView: View { } VStack(alignment: .leading, spacing: 6.7) { - HStack(spacing: 2.7) { - if isAdult { - Text("19") - .appFont(size: 8, weight: .bold) - .foregroundColor(.white) - .padding(.vertical, 2.8) - .padding(.horizontal, 2) - .background(Circle().foregroundColor(Color.mainRed2)) - } - - Text(roomTitle) - .appFont(size: 12, weight: .bold) - .foregroundColor(.grayee) - .lineLimit(1) - } + Text(isAdult ? "🔞 \(roomTitle)" : roomTitle) + .appFont(size: 12, weight: .bold) + .foregroundColor(.grayee) + .lineLimit(1) HStack(spacing: 5.3) { Text(creatorNickname)