diff --git a/Shared/Views/ChannelVideosView.swift b/Shared/Views/ChannelVideosView.swift index 46bfd6fb..7cf49290 100644 --- a/Shared/Views/ChannelVideosView.swift +++ b/Shared/Views/ChannelVideosView.swift @@ -81,12 +81,14 @@ struct ChannelVideosView: View { #if !os(tvOS) .toolbar { - ToolbarItem(placement: .navigation) { + ToolbarItem(placement: .cancellationAction) { if navigationStyle == .tab { - Button("Done") { + Button { withAnimation(Constants.overlayAnimation) { navigation.presentingChannel = false } + } label: { + Label("Close", systemImage: "xmark") } } }