From 0b0b994e65dd45261bc1e28c762c89a748420a1b Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sat, 30 Jan 2021 22:09:31 -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 0ce9dfb..2a6689c 100644 --- a/Secretive/Views/CreateSecretView.swift +++ b/Secretive/Views/CreateSecretView.swift @@ -29,7 +29,7 @@ struct CreateSecretView: View { VStack(spacing: 20) { Picker("", selection: $requiresAuthentication) { Text("Requires Authentication (Biometrics or Password) before each use").tag(true) - Text("Not required when Mac is unlocked").tag(false) + Text("Authentication not required when Mac is unlocked").tag(false) } .pickerStyle(RadioGroupPickerStyle()) }