You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://github.com/facebook/flow/releases/tag/v0.145.0
Fixes the following error:
Cannot create PartialDateInput element because boolean literal true [1]
is incompatible with boolean literal false [2] in property uncontrolled.
[incompatible-type]
root/components/FormRowPartialDate.js
[1] 55│ uncontrolled = false,
:
61│ label={label}
62│ required={required}
63│ />
64│ <PartialDateInput
65│ disabled={disabled}
66│ dispatch={dispatch}
67│ field={field}
root/components/PartialDateInput.js
[2] 34│ +uncontrolled?: false,
This seems to have been because of the presence of `dispatch`.
0 commit comments