diff --git a/Shared/Views/VideoContextMenuView.swift b/Shared/Views/VideoContextMenuView.swift index c02c52b6..14b87b28 100644 --- a/Shared/Views/VideoContextMenuView.swift +++ b/Shared/Views/VideoContextMenuView.swift @@ -154,7 +154,9 @@ struct VideoContextMenuView: View { } #if os(tvOS) - Button("Cancel", role: .cancel) {} + if #unavailable(tvOS 18.0) { + Button("Cancel", role: .cancel) {} + } #endif }