diff --git a/Yattee/Views/Home/HomeSettingsView.swift b/Yattee/Views/Home/HomeSettingsView.swift index db7d71eb..20e2f658 100644 --- a/Yattee/Views/Home/HomeSettingsView.swift +++ b/Yattee/Views/Home/HomeSettingsView.swift @@ -31,8 +31,10 @@ struct HomeSettingsView: View { var body: some View { List { + #if !os(tvOS) shortcutsSection availableShortcutsSection + #endif sectionsSection availableSectionsSection itemsLimitSection diff --git a/Yattee/Views/Home/HomeView.swift b/Yattee/Views/Home/HomeView.swift index c1fc4502..83504576 100644 --- a/Yattee/Views/Home/HomeView.swift +++ b/Yattee/Views/Home/HomeView.swift @@ -188,9 +188,11 @@ struct HomeView: View { @ViewBuilder private var homeContent: some View { + #if !os(tvOS) if hasVisibleShortcuts { shortcutsSection } + #endif ForEach(settingsManager?.visibleSections() ?? HomeSectionItem.defaultOrder.filter { HomeSectionItem.defaultVisibility[$0] == true }) { section in sectionView(for: section)