diff --git a/Shared/Navigation/AppTabNavigation.swift b/Shared/Navigation/AppTabNavigation.swift index 1c784ea2..3f443469 100644 --- a/Shared/Navigation/AppTabNavigation.swift +++ b/Shared/Navigation/AppTabNavigation.swift @@ -126,7 +126,7 @@ struct AppTabNavigation: View { LazyView(TrendingView()) } .tabItem { - Label("Trending", systemImage: "chart.bar.fill") + Label("Trending", systemImage: "arrow.up.right.circle.fill") .accessibility(label: Text("Trending")) } .tag(TabSelection.trending) diff --git a/Shared/Navigation/Sidebar.swift b/Shared/Navigation/Sidebar.swift index 65840241..aeb930b4 100644 --- a/Shared/Navigation/Sidebar.swift +++ b/Shared/Navigation/Sidebar.swift @@ -103,7 +103,7 @@ struct Sidebar: View { if visibleSections.contains(.trending) { NavigationLink(destination: LazyView(TrendingView()), tag: TabSelection.trending, selection: $navigation.tabSelection) { - Label("Trending", systemImage: "chart.bar") + Label("Trending", systemImage: "arrow.up.right.circle.fill") .accessibility(label: Text("Trending")) } .id("trending")