From 82c88bcf6beca143475dd1d108ecf0a078fc1f79 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sat, 30 Jan 2021 22:08:56 -0800 Subject: [PATCH] Update CreateSecretView.swift --- 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 e70697b..0ce9dfb 100644 --- a/Secretive/Views/CreateSecretView.swift +++ b/Secretive/Views/CreateSecretView.swift @@ -28,7 +28,7 @@ struct CreateSecretView: View { HStack { VStack(spacing: 20) { Picker("", selection: $requiresAuthentication) { - Text("Required (Biometrics or Password) before each use").tag(true) + Text("Requires Authentication (Biometrics or Password) before each use").tag(true) Text("Not required when Mac is unlocked").tag(false) } .pickerStyle(RadioGroupPickerStyle())