diff --git a/Yattee/Views/Components/VideoListContent.swift b/Yattee/Views/Components/VideoListContent.swift index f2573c94..024b0c74 100644 --- a/Yattee/Views/Components/VideoListContent.swift +++ b/Yattee/Views/Components/VideoListContent.swift @@ -54,8 +54,10 @@ struct VideoListContent: View { if listStyle == .inset { list + #if !os(tvOS) .background(ListBackgroundStyle.card.color) .clipShape(RoundedRectangle(cornerRadius: cardCornerRadius)) + #endif .padding(.horizontal, cardHorizontalPadding) .padding(.bottom, bottomPadding) } else { diff --git a/Yattee/Views/Components/VideoListRow.swift b/Yattee/Views/Components/VideoListRow.swift index 413f19b0..f13153d0 100644 --- a/Yattee/Views/Components/VideoListRow.swift +++ b/Yattee/Views/Components/VideoListRow.swift @@ -98,7 +98,7 @@ struct VideoListRow: View { .fill(Color(nsColor: .separatorColor)) .frame(height: 1) .padding(.leading, dividerLeadingPadding) - #else + #elseif !os(tvOS) Divider() .padding(.leading, dividerLeadingPadding) #endif