From f9b1a96c89c0b1f13858ef75714e09d3852eee85 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 13 Dec 2025 00:47:08 +0000 Subject: [PATCH] chore(macos): move Permissions tab after Tools --- apps/macos/Sources/Clawdis/SettingsRootView.swift | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/macos/Sources/Clawdis/SettingsRootView.swift b/apps/macos/Sources/Clawdis/SettingsRootView.swift index 72d188efa..45523e298 100644 --- a/apps/macos/Sources/Clawdis/SettingsRootView.swift +++ b/apps/macos/Sources/Clawdis/SettingsRootView.swift @@ -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") }