From b8cde410c53eee1494f35ce2f12d78b98b180aac Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Fri, 14 Nov 2025 18:58:28 +0100 Subject: [PATCH] Update default visible sections from trending to popular Changed the default visible sections to include popular instead of trending. --- Shared/Defaults.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Defaults.swift b/Shared/Defaults.swift index 6b2b0098..a33ee284 100644 --- a/Shared/Defaults.swift +++ b/Shared/Defaults.swift @@ -16,7 +16,7 @@ extension Defaults.Keys { static let widgetsSettings = Key<[WidgetSettings]>("widgetsSettings", default: []) static let startupSection = Key("startupSection", default: .home) static let showSearchSuggestions = Key("showSearchSuggestions", default: true) - static let visibleSections = Key>("visibleSections", default: [.subscriptions, .trending, .playlists]) + static let visibleSections = Key>("visibleSections", default: [.subscriptions, .popular, .playlists]) static let showOpenActionsToolbarItem = Key("showOpenActionsToolbarItem", default: false) #if os(iOS)