Change host and signing

This commit is contained in:
Max Goedjen
2020-03-05 23:48:24 -08:00
parent 54015091fe
commit 1e68198fd3
3 changed files with 19 additions and 30 deletions

View File

@@ -32,9 +32,9 @@ struct ContentView<StoreType: SecretStore>: View {
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView(store: Preview.Store(numberOfRandomSecrets: 10))
}
}
//
//struct ContentView_Previews: PreviewProvider {
// static var previews: some View {
// ContentView(store: Preview.Store(numberOfRandomSecrets: 10))
// }
//}

View File

@@ -15,7 +15,7 @@ struct CreateSecureEnclaveSecretView: View {
Section(header: Text("Secret Name")) {
TextField("Name", text: $name)
}
Section(header: Text("Authentication")) {
Section {
Toggle(isOn: $requiresAuthentication) {
Text("Requires Authentication (Biometrics or Password)")
}