From 9c051ff1e0a0410dad7c5d57a7806ca04d2e6f59 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 24 Sep 2024 19:39:47 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=ED=94=84=20=EC=B0=B8?= =?UTF-8?q?=EC=97=AC=EC=9E=90=20=EB=A6=AC=EC=8A=A4=ED=8A=B8=20-=20?= =?UTF-8?q?=EC=8A=A4=ED=94=BC=EC=BB=A4=20=ED=91=9C=EC=8B=9C=20=EC=B5=9C?= =?UTF-8?q?=EB=8C=80=205=EB=AA=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Live/Room/Dialog/LiveRoomProfileItemTitleView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SodaLive/Sources/Live/Room/Dialog/LiveRoomProfileItemTitleView.swift b/SodaLive/Sources/Live/Room/Dialog/LiveRoomProfileItemTitleView.swift index 38bfaa0..cf54ff2 100644 --- a/SodaLive/Sources/Live/Room/Dialog/LiveRoomProfileItemTitleView.swift +++ b/SodaLive/Sources/Live/Room/Dialog/LiveRoomProfileItemTitleView.swift @@ -28,7 +28,7 @@ struct LiveRoomProfileItemTitleView: View { } if let totalCount = totalCount { - Text("/\(totalCount > 4 ? 4 : totalCount - 1)") + Text("/\(totalCount > 5 ? 5 : totalCount - 1)") .font(.custom(Font.medium.rawValue, size: 13)) .foregroundColor(Color.graybb) }