chore(macos): move Permissions tab after Tools

main
Peter Steinberger 2025-12-13 00:47:08 +00:00
parent 7f4f01009b
commit f9b1a96c89
1 changed files with 7 additions and 7 deletions

View File

@ -32,13 +32,6 @@ struct SettingsRootView: View {
.tabItem { Label("Instances", systemImage: "network") }
.tag(SettingsTab.instances)
PermissionsSettings(
status: self.permissionMonitor.status,
refresh: self.refreshPerms,
showOnboarding: { OnboardingController.shared.show() })
.tabItem { Label("Permissions", systemImage: "lock.shield") }
.tag(SettingsTab.permissions)
SessionsSettings()
.tabItem { Label("Sessions", systemImage: "clock.arrow.circlepath") }
.tag(SettingsTab.sessions)
@ -47,6 +40,13 @@ struct SettingsRootView: View {
.tabItem { Label("Tools", systemImage: "wrench.and.screwdriver") }
.tag(SettingsTab.tools)
PermissionsSettings(
status: self.permissionMonitor.status,
refresh: self.refreshPerms,
showOnboarding: { OnboardingController.shared.show() })
.tabItem { Label("Permissions", systemImage: "lock.shield") }
.tag(SettingsTab.permissions)
if self.state.debugPaneEnabled {
DebugSettings()
.tabItem { Label("Debug", systemImage: "ant") }