Open
Description
Please list the package(s) involved in the issue, and include the version you are using
@shopify/[email protected]
Describe the bug
Empty date fields display today's date rather than being empty. That's not nice for optional date fields
If you omit the value
prop, set it to undefined
or provide an invalid date it will default to today's date
Steps to reproduce the behavior:
<DateField label="asd" />
<DateField label="asd" value={undefined} />
<DateField label="asd" value={'some invalid value'} />
Expected behavior
It should be empty