From 6e47a5fbcfd9b0eca3e3d3404e70fd67dc721560 Mon Sep 17 00:00:00 2001 From: edde746 <86283021+edde746@users.noreply.github.com> Date: Tue, 19 May 2026 22:57:24 +0200 Subject: [PATCH] fix(tv): hide hero setting --- .../settings/appearance_settings_screen.dart | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/screens/settings/appearance_settings_screen.dart b/lib/screens/settings/appearance_settings_screen.dart index 547ac56f..a763e099 100644 --- a/lib/screens/settings/appearance_settings_screen.dart +++ b/lib/screens/settings/appearance_settings_screen.dart @@ -47,12 +47,13 @@ class AppearanceSettingsScreen extends StatelessWidget { ), SettingsSectionHeader(t.settings.homeScreen), - SettingSwitchTile( - pref: SettingsService.showHeroSection, - icon: Symbols.featured_play_list_rounded, - title: t.settings.showHeroSection, - subtitle: t.settings.showHeroSectionDescription, - ), + if (!PlatformDetector.isTV()) + SettingSwitchTile( + pref: SettingsService.showHeroSection, + icon: Symbols.featured_play_list_rounded, + title: t.settings.showHeroSection, + subtitle: t.settings.showHeroSectionDescription, + ), SettingSwitchTile( pref: SettingsService.useGlobalHubs, icon: Symbols.home_rounded,