From 97da44e4d535b382bb7c1b1a6f7c89d509ba1706 Mon Sep 17 00:00:00 2001 From: neon443 <69979447+neon443@users.noreply.github.com> Date: Tue, 1 Jul 2025 20:17:39 +0100 Subject: [PATCH] remove quick connect because it doesnt work :cry --- ShhShell/Views/Hosts/HostsView.swift | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/ShhShell/Views/Hosts/HostsView.swift b/ShhShell/Views/Hosts/HostsView.swift index 0237481..62e2264 100644 --- a/ShhShell/Views/Hosts/HostsView.swift +++ b/ShhShell/Views/Hosts/HostsView.swift @@ -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)