Skip to content

Commit 085895f

Browse files
committed
proper naming
1 parent 63d29d0 commit 085895f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ struct tweaksection: Identifiable {
6060
}
6161

6262

63-
struct MiscView: View {
64-
@ObservedObject private var mgr = laramgr.shared
63+
struct NuggetView: View {
64+
@ObservedObject var mgr: laramgr
6565
let fm = FileManager.default
6666
@State private var tweaks: [tweaksection] = [
6767
tweaksection(name: "User Interface", icon: "eye", tweaks: [
@@ -116,7 +116,7 @@ struct MiscView: View {
116116
}
117117
tweaksui
118118
}
119-
.navigationTitle("Title")
119+
.navigationTitle("Nugget")
120120
.refreshable {
121121
load()
122122
}

lara/views/tweaks/TweaksView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ struct TweaksView: View {
5555
.disabled(!mgr.sbxready)
5656
NavigationLink("Custom Overwrite", destination: CustomView(mgr: mgr))
5757
.disabled(!mgr.vfsready)
58-
NavigationLink("Miscellaneous Tweaks", destination: MiscView())
58+
NavigationLink("Nugget", destination: NuggetView(mgr: mgr))
5959
.disabled(!mgr.sbxready || !mgr.vfsready)
6060
}
6161

0 commit comments

Comments
 (0)