From d95bcc406553bc59e02cea18acafd5700aea6b68 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Thu, 8 Jun 2023 12:17:16 +0200 Subject: [PATCH] Fix #492 --- Shared/Subscriptions/ChannelsView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Shared/Subscriptions/ChannelsView.swift b/Shared/Subscriptions/ChannelsView.swift index 8899ea24..4270d37d 100644 --- a/Shared/Subscriptions/ChannelsView.swift +++ b/Shared/Subscriptions/ChannelsView.swift @@ -77,9 +77,11 @@ struct ChannelsView: View { .listRowSeparator(false) } } + #if !os(tvOS) .background( NavigationLink(destination: ChannelVideosView(channel: channelForLink ?? Video.fixture.channel), isActive: $channelLinkActive, label: EmptyView.init) ) + #endif .onAppear { subscriptions.load() }