remove quick connect because it doesnt work :cry

This commit is contained in:
neon443
2025-07-01 20:17:39 +01:00
parent 8a37a1464a
commit 97da44e4d5

View File

@@ -32,24 +32,6 @@ struct HostsView: View {
}
.id(host)
.animation(.default, value: host)
.fullScreenCover(
isPresented: Binding(
get: { checkShell(handler.state) },
set: { newValue in
handler.go()
}
)
) {
ShellView(handler: handler, hostsManager: hostsManager)
}
.swipeActions(edge: .leading) {
Button() {
handler.go()
} label: {
Label("Quick Connect", systemImage: "power")
}
.foregroundStyle(.green)
}
.swipeActions(edge: .trailing) {
Button(role: .destructive) {
hostsManager.removeHost(host)