1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
This commit is contained in:
Arkadiusz Fal 2023-06-08 12:17:16 +02:00
parent 1efd9e2b90
commit d95bcc4065

View File

@ -77,9 +77,11 @@ struct ChannelsView: View {
.listRowSeparator(false) .listRowSeparator(false)
} }
} }
#if !os(tvOS)
.background( .background(
NavigationLink(destination: ChannelVideosView(channel: channelForLink ?? Video.fixture.channel), isActive: $channelLinkActive, label: EmptyView.init) NavigationLink(destination: ChannelVideosView(channel: channelForLink ?? Video.fixture.channel), isActive: $channelLinkActive, label: EmptyView.init)
) )
#endif
.onAppear { .onAppear {
subscriptions.load() subscriptions.load()
} }