This commit is contained in:
Max Goedjen
2025-09-01 17:43:33 -07:00
parent ea96dd88eb
commit f3ce6b9d0f
9 changed files with 138 additions and 50 deletions

View File

@@ -61,7 +61,6 @@ struct Secretive: App {
}
.sheet(isPresented: $showingIntegrations) {
IntegrationsView()
.frame(minHeight: 400)
}
}
.commands {
@@ -81,6 +80,11 @@ struct Secretive: App {
NSWorkspace.shared.open(Constants.helpURL)
}
}
CommandGroup(after: .help) {
Button("Setup") {
showingSetup = true
}
}
SidebarCommands()
}
}