Remove button prop

Signed-off-by: Philipp Hugenroth <philipph@spotify.com>
This commit is contained in:
Philipp Hugenroth
2023-11-08 14:50:44 +01:00
parent 5060eaa749
commit 69ee8d75f4
6 changed files with 10 additions and 5 deletions
@@ -60,7 +60,7 @@ export const InputSelector = ({ name, options, control, error }: Props) => {
>
{options.map(option => {
return (
<MenuItem button key={option} value={option}>
<MenuItem key={option} value={option}>
{option}
</MenuItem>
);