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))