From 44e9e07716cf9b45a438863d85f29050960b7670 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 13 May 2024 19:24:07 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8B=9C=EB=A6=AC=EC=A6=88=20=EC=A0=84?= =?UTF-8?q?=EC=B2=B4=EB=B3=B4=EA=B8=B0=20-=20=EC=95=84=EC=9D=B4=ED=85=9C?= =?UTF-8?q?=20=EC=82=AC=EC=9D=B4=EC=A6=88=20=EC=9D=B4=EC=83=81=ED=95=98?= =?UTF-8?q?=EA=B2=8C=20=EB=82=98=EC=98=A4=EB=8D=98=20=EA=B2=83=20=ED=99=94?= =?UTF-8?q?=EB=A9=B4=201/3=EB=A1=9C=20=EB=82=98=EC=98=A4=EB=8F=84=EB=A1=9D?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/UI/Component/SeriesListItemView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SodaLive/Sources/UI/Component/SeriesListItemView.swift b/SodaLive/Sources/UI/Component/SeriesListItemView.swift index 75665a2..950882d 100644 --- a/SodaLive/Sources/UI/Component/SeriesListItemView.swift +++ b/SodaLive/Sources/UI/Component/SeriesListItemView.swift @@ -21,6 +21,7 @@ struct SeriesListItemView: View { KFImage(URL(string: item.coverImage)) .resizable() .scaledToFill() + .frame(width: itemWidth, height: itemWidth * 432 / 306) .cornerRadius(5) .clipped() @@ -51,7 +52,6 @@ struct SeriesListItemView: View { } .padding(3.3) } - .frame(width: itemWidth, height: itemWidth * 432 / 306) Text(item.title) .font(.custom(Font.medium.rawValue, size: 12))