diff --git a/Shared/Navigation/AppTabNavigation.swift b/Shared/Navigation/AppTabNavigation.swift index 12f6adc0..1c784ea2 100644 --- a/Shared/Navigation/AppTabNavigation.swift +++ b/Shared/Navigation/AppTabNavigation.swift @@ -115,7 +115,7 @@ struct AppTabNavigation: View { .toolbar { toolbarContent } } .tabItem { - Label("Popular", systemImage: "arrow.up.right.circle.fill") + Label("Popular", systemImage: "chart.bar.fill") .accessibility(label: Text("Popular")) } .tag(TabSelection.popular) diff --git a/Shared/Navigation/Sidebar.swift b/Shared/Navigation/Sidebar.swift index 8131055d..65840241 100644 --- a/Shared/Navigation/Sidebar.swift +++ b/Shared/Navigation/Sidebar.swift @@ -95,7 +95,7 @@ struct Sidebar: View { if visibleSections.contains(.popular), accounts.app.supportsPopular { NavigationLink(destination: LazyView(PopularView()), tag: TabSelection.popular, selection: $navigation.tabSelection) { - Label("Popular", systemImage: "arrow.up.right.circle") + Label("Popular", systemImage: "chart.bar.fill") .accessibility(label: Text("Popular")) } .id("popular") diff --git a/Shared/Views/PopularView.swift b/Shared/Views/PopularView.swift index df782c4e..11e23f7d 100644 --- a/Shared/Views/PopularView.swift +++ b/Shared/Views/PopularView.swift @@ -104,7 +104,7 @@ struct PopularView: View { } label: { HStack(spacing: 12) { HStack(spacing: 6) { - Image(systemName: "arrow.up.right.circle.fill") + Image(systemName: "chart.bar.fill") .foregroundColor(.primary) .imageScale(.small)