Put back empty picker text

This commit is contained in:
Max Goedjen 2021-01-30 22:07:25 -08:00 committed by GitHub
parent 08c9d41317
commit 3f8d7917fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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