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()) }