Is there a way to hide the contact row on the Apple Pay Modal where it asks for email and phone number? For my case a user is already logged in at this point so I don't need to ask for this information again, nor do I want the user to change the email associated with the order.
I have already tried
request.requiredShippingContactFields = [.name]
request.requiredBillingContactFields = [.name]
and
request.requiredShippingContactFields = []
request.requiredBillingContactFields = []
but neither of these worked