라이브 방 - 스피커 최대 10 -> 5명으로 수정

This commit is contained in:
Yu Sung
2023-08-21 05:38:53 +09:00
parent 5301aebe71
commit c5fdfcafda
4 changed files with 4 additions and 4 deletions

View File

@@ -28,7 +28,7 @@ struct LiveRoomProfileItemTitleView: View {
}
if let totalCount = totalCount {
Text("/\(totalCount > 9 ? 9 : totalCount - 1)")
Text("/\(totalCount > 4 ? 4 : totalCount - 1)")
.font(.custom(Font.medium.rawValue, size: 13))
.foregroundColor(Color(hex: "bbbbbb"))
}