diff --git a/Sesame/ContentView.swift b/Sesame/ContentView.swift index 526e664..587887d 100644 --- a/Sesame/ContentView.swift +++ b/Sesame/ContentView.swift @@ -57,9 +57,12 @@ struct ContentView: View { } Picker("Connection type", selection: $coordinator.connectionType) { - ForEach(ConnectionStrategy.allCases, id: \.rawValue) { connection in - Text(connection.description).tag(connection) - } + Text(ConnectionStrategy.local.description).tag(ConnectionStrategy.local) + Text(ConnectionStrategy.remote.description).tag(ConnectionStrategy.remote) + Text(ConnectionStrategy.remoteFirst.description).tag(ConnectionStrategy.remoteFirst) +// ForEach(ConnectionStrategy.allCases, id: \.rawValue) { connection in +// Text(connection.description).tag(connection) +// } } .pickerStyle(.segmented) .padding(.horizontal, 30)