diff --git a/mlbTVOS/Views/DashboardView.swift b/mlbTVOS/Views/DashboardView.swift index b8a27c5..4fa4ad1 100644 --- a/mlbTVOS/Views/DashboardView.swift +++ b/mlbTVOS/Views/DashboardView.swift @@ -132,6 +132,9 @@ struct DashboardView: View { heroAndControlSection .platformFocusSection() + featuredChannelsSection + .platformFocusSection() + if !viewModel.liveGames.isEmpty { gameShelf( title: "Live Board", @@ -599,7 +602,6 @@ struct DashboardView: View { private var controlRail: some View { VStack(alignment: .leading, spacing: 18) { liveRadarPanel - featuredChannelsSection multiViewStatus } } @@ -806,16 +808,12 @@ struct DashboardView: View { #endif private var featuredChannelsSection: some View { - VStack(alignment: .leading, spacing: 14) { - Text("Quick Channels") - .font(railTitleFont) - .foregroundStyle(DS.Colors.textPrimary) - + HStack(spacing: DS.Spacing.cardGap) { mlbNetworkCard + .frame(maxWidth: .infinity) nsfwVideosCard + .frame(maxWidth: .infinity) } - .padding(24) - .background(surfaceCardBackground()) } private var mlbNetworkCard: some View {