updated not required text

This commit is contained in:
Josh Heyse 2021-01-30 22:31:13 -06:00
parent 7653d6960b
commit 08c9d41317
1 changed files with 1 additions and 1 deletions

View File

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