diff --git a/JellyfinPlayer/EpisodeItemView.swift b/JellyfinPlayer/EpisodeItemView.swift index 05257d6d..51db820f 100644 --- a/JellyfinPlayer/EpisodeItemView.swift +++ b/JellyfinPlayer/EpisodeItemView.swift @@ -261,18 +261,8 @@ struct EpisodeItemView: View { .overlay(RoundedRectangle(cornerRadius: 2) .stroke(Color.secondary, lineWidth: 1)) } - }.frame(maxWidth: .infinity, alignment: .leading) - if fullItem.CommunityRating != "0" { - HStack { - Image(systemName: "star").foregroundColor(.secondary) - Text(fullItem.CommunityRating).font(.subheadline) - .fontWeight(.semibold) - .foregroundColor(.secondary) - .lineLimit(1) - .offset(x: -7, y: 0.7) - } } - }.frame(maxWidth: .infinity, alignment: .leading) + } .padding(.bottom, UIDevice.current.userInterfaceIdiom == .pad ? 98 : 26) } HStack { diff --git a/JellyfinPlayer/MovieItemView.swift b/JellyfinPlayer/MovieItemView.swift index fbae0647..969a4c40 100644 --- a/JellyfinPlayer/MovieItemView.swift +++ b/JellyfinPlayer/MovieItemView.swift @@ -349,16 +349,6 @@ struct MovieItemView: View { .overlay(RoundedRectangle(cornerRadius: 2) .stroke(Color.secondary, lineWidth: 1)) } - }.frame(maxWidth: .infinity, alignment: .leading) - if fullItem.CommunityRating != "0" { - HStack { - Image(systemName: "star").foregroundColor(.secondary) - Text(fullItem.CommunityRating).font(.subheadline) - .fontWeight(.semibold) - .foregroundColor(.secondary) - .lineLimit(1) - .offset(x: -7, y: 0.7) - } } } .padding(.bottom, UIDevice.current.userInterfaceIdiom == .pad ? 98 : 26)