From 3f8d7917fcb9cdedd6713c9a8baa63e26c421899 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sat, 30 Jan 2021 22:07:25 -0800 Subject: [PATCH] Put back empty picker text --- Secretive/Views/CreateSecretView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Secretive/Views/CreateSecretView.swift b/Secretive/Views/CreateSecretView.swift index 3205fef..e70697b 100644 --- a/Secretive/Views/CreateSecretView.swift +++ b/Secretive/Views/CreateSecretView.swift @@ -27,7 +27,7 @@ struct CreateSecretView: 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) }