From 17c827f55e689448b13b4fd0906e72caa67bad8f Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 30 Apr 2024 17:46:58 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8B=9C=EB=A6=AC=EC=A6=88=20=ED=8F=AC?= =?UTF-8?q?=EC=8A=A4=ED=84=B0=20-=20=ED=81=AC=EB=A6=AC=EC=97=90=EC=9D=B4?= =?UTF-8?q?=ED=84=B0=EB=AA=85=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/UI/Component/SeriesListBigItemView.swift | 12 ------------ .../Sources/UI/Component/SeriesListItemView.swift | 12 ------------ 2 files changed, 24 deletions(-) diff --git a/SodaLive/Sources/UI/Component/SeriesListBigItemView.swift b/SodaLive/Sources/UI/Component/SeriesListBigItemView.swift index 2a9602f..93c71a5 100644 --- a/SodaLive/Sources/UI/Component/SeriesListBigItemView.swift +++ b/SodaLive/Sources/UI/Component/SeriesListBigItemView.swift @@ -63,18 +63,6 @@ struct SeriesListBigItemView: View { .foregroundColor(Color.grayee) .lineLimit(2) - HStack(spacing: 3) { - KFImage(URL(string: item.creator.profileImage)) - .resizable() - .scaledToFill() - .frame(width: 16, height: 16, alignment: .center) - .clipShape(Circle()) - - Text(item.creator.nickname) - .font(.custom(Font.medium.rawValue, size: 10)) - .foregroundColor(Color.gray77) - } - Text(item.publishedDaysOfWeek) .font(.custom(Font.medium.rawValue, size: 11)) .foregroundColor(Color.gray77) diff --git a/SodaLive/Sources/UI/Component/SeriesListItemView.swift b/SodaLive/Sources/UI/Component/SeriesListItemView.swift index 203ebef..0d527b3 100644 --- a/SodaLive/Sources/UI/Component/SeriesListItemView.swift +++ b/SodaLive/Sources/UI/Component/SeriesListItemView.swift @@ -63,18 +63,6 @@ struct SeriesListItemView: View { .foregroundColor(Color.grayee) .lineLimit(2) - HStack(spacing: 3) { - KFImage(URL(string: item.creator.profileImage)) - .resizable() - .scaledToFill() - .frame(width: 16, height: 16, alignment: .center) - .clipShape(Circle()) - - Text(item.creator.nickname) - .font(.custom(Font.medium.rawValue, size: 10)) - .foregroundColor(Color.gray77) - } - Text(item.publishedDaysOfWeek) .font(.custom(Font.medium.rawValue, size: 11)) .foregroundColor(Color.gray77)