I would to hide the shipping address from my payment request w3c.
Any idea please!
const request = new PaymentRequest([{
supportedMethods: 'https://pay
}], {
total: {
label: 'total',
amount: { value: '10', currency: 'USD' }
}
,
shippingOptions: [
{
id..
}
]
};
const options = {requestShipping: true};
const request =new PaymentRequest(supportedInstruments, details, options); ```