A bug in Shopify’s Checkout UI extensions where the DateField component’s disabled property was not disabled even when set to true.
The following document states that you can disable the form by setting the disabled property to true, but in reality, setting it to true does nothing and the form simply functions as normal. There is a discrepancy between the content of the document and the actual behavior of the component. This is clearly a bug in the library.
function Extension() {
return <DateField label="Select a date" disabled={true} />;
}
