Skip to content

Commit 8844e89

Browse files
authored
Update order in sidebar
1 parent 563401a commit 8844e89

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/prostore/prostore.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ struct MainSidebarView: View {
1414

1515
var body: some View {
1616
NavigationSplitView {
17-
List(selection: $selected) {
17+
List(selection: $selected) {
18+
NavigationLink(value: SidebarItem.apps) {
19+
Label("Apps", systemImage: "square.grid.2x2.fill")
20+
}
1821
NavigationLink(value: SidebarItem.signer) {
1922
Label("Signer", systemImage: "hammer")
2023
}
2124
NavigationLink(value: SidebarItem.certificates) {
2225
Label("Certificates", systemImage: "key")
2326
}
24-
NavigationLink(value: SidebarItem.apps) {
25-
Label("Apps", systemImage: "square.grid.2x2.fill")
26-
}
2727
NavigationLink(value: SidebarItem.about) {
2828
Label("About", systemImage: "info.circle")
2929
}

0 commit comments

Comments
 (0)