stackworx / formik-mui

Bindings for using Formik with Material-UI

Home Page:https://stackworx.github.io/formik-mui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

numeric Select values are converted to a string

schester44 opened this issue · comments

Numeric values that are passed to <MenuItem are converted to a string in Formik.

Reproduction: https://codesandbox.io/s/nostalgic-artem-iw3hh0?file=/src/index.tsx

<Field name="age" component={Select}>
 <MenuItem value={10}>Age 10</MenuItem>
</Field>

In the above example, I would expect formik's age value to be typeof number but it is typeof string when selecting the menu item.