This commit is contained in:
Max Goedjen 2022-03-05 15:56:53 -08:00
parent 28d0fc3adf
commit 2fd4f74a41
No known key found for this signature in database
GPG Key ID: E58C21DD77B9B8E8
1 changed files with 4 additions and 2 deletions

View File

@ -7,7 +7,7 @@ struct CreateSecretView<StoreType: SecretStoreModifiable>: View {
@Binding var showing: Bool
@State private var name = ""
@State private var requiresAuthentication = true
@State private var requiresAuthentication = false
var body: some View {
VStack {
@ -87,7 +87,8 @@ struct ThumbnailPickerView<ValueType: Hashable>: View {
Text(item.name)
.bold()
Text(item.description)
}.onTapGesture {
}
.onTapGesture {
selection = item.value
}
}
@ -132,6 +133,7 @@ struct SystemBackgroundView: View {
.resizable()
.scaleEffect(3, anchor: anchor)
.clipped()
.allowsHitTesting(false)
@unknown default:
Rectangle()
.foregroundColor(Color(.systemPurple))