When putting a Select component inside of a FormField with the required prop the form should not submit unless there is a value in Select
The Form does not submit if the Select component has no value but it also does not submit if the Select component does have a value

Codesandxox example https://codesandbox.io/s/grommet-v2-template-bv773?file=/index.js
1.) Choose a value from the Select component
2.) Click the Submit button
I think the name prop is missing in Select.
<Form onSubmit={({ value }) => {}}>
<FormField name="test" label="Test" required>
- <Select options={["one", "two", "three"]} />
+ <Select name="test" options={["one", "two", "three"]} />
</FormField>
<Button type="submit" primary label="Submit" />
</Form>
@netochaves Thanks that seemed to work! We'll be closing the issue now
Thank you @netochaves !