Quite confused by this one - I'm trying to set the min and max props for NumberInput with an integer value and seeing the following error:
src/components/Survey/BloodPressureForm.tsx:19:7 - error TS2322: Type 'string | number' is not assignable to type 'number | undefined'.
Type 'string' is not assignable to type 'number'.
19 min={20}
~~~
Clearly 20 is of type number, not string | number. Any thoughts here?