@@ -17,13 +17,13 @@ struct ProStore: App {
1717}
1818
1919struct MainSidebarView : View {
20- @State private var selected : SidebarItem ? = . apps
20+ @State private var selected : SidebarItem ? = . store
2121
2222 var body : some View {
2323 NavigationSplitView {
2424 List ( selection: $selected) {
25- NavigationLink ( value: SidebarItem . apps ) {
26- Label ( " Apps " , systemImage: " square.grid.2x2 .fill" )
25+ NavigationLink ( value: SidebarItem . store ) {
26+ Label ( " Store " , systemImage: " cart .fill" )
2727 }
2828 NavigationLink ( value: SidebarItem . certificates) {
2929 Label ( " Certificates " , systemImage: " key " )
@@ -44,7 +44,7 @@ struct MainSidebarView: View {
4444 . navigationTitle ( " Certificates " )
4545 . navigationBarTitleDisplayMode ( . large)
4646 }
47- case . apps :
47+ case . store :
4848 NavigationStack {
4949 AppsView ( repoURLs: [
5050 URL ( string: " https://repository.apptesters.org/ " ) !,
@@ -57,7 +57,7 @@ struct MainSidebarView: View {
5757 URL ( string: " https://aio.zxcvbn.fyi/r/repo.esign.json " ) !,
5858 URL ( string: " https://raw.githubusercontent.com/Neoncat-OG/TrollStore-IPAs/main/apps_esign.json " ) !
5959 ] )
60- . navigationTitle ( " Apps " )
60+ . navigationTitle ( " Store " )
6161 . navigationBarTitleDisplayMode ( . large)
6262 }
6363 case . about:
@@ -82,8 +82,9 @@ struct MainSidebarView: View {
8282enum SidebarItem : Hashable {
8383 case updater
8484 case certificates
85- case apps
85+ case store
8686 case about
8787
8888}
8989
90+
0 commit comments