Update CreateSecretView.swift

This commit is contained in:
Max Goedjen 2021-01-30 22:09:31 -08:00 committed by GitHub
parent 82c88bcf6b
commit 0b0b994e65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ struct CreateSecretView<StoreType: SecretStoreModifiable>: View {
VStack(spacing: 20) {
Picker("", selection: $requiresAuthentication) {
Text("Requires Authentication (Biometrics or Password) before each use").tag(true)
Text("Not required when Mac is unlocked").tag(false)
Text("Authentication not required when Mac is unlocked").tag(false)
}
.pickerStyle(RadioGroupPickerStyle())
}