From 08c9d41317d5b79d34ea632b437e2c350469922a Mon Sep 17 00:00:00 2001 From: Josh Heyse Date: Sat, 30 Jan 2021 22:31:13 -0600 Subject: [PATCH] updated not required 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 f8a3d60..3205fef 100644 --- a/Secretive/Views/CreateSecretView.swift +++ b/Secretive/Views/CreateSecretView.swift @@ -29,7 +29,7 @@ struct CreateSecretView: 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()) }