diff options
Diffstat (limited to 'src/components/shared')
| -rw-r--r-- | src/components/shared/Select.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/shared/Select.tsx b/src/components/shared/Select.tsx index 03ac084..376fb3c 100644 --- a/src/components/shared/Select.tsx +++ b/src/components/shared/Select.tsx @@ -10,6 +10,7 @@ type Props = { export default function Select({ options, selected, onChange }: Props) { return ( + // eslint-disable-next-line jsx-a11y/no-onchange <select className={s.select} value={selected} onChange={onChange}> {options.map(([value, name]) => ( <option key={value} value={value}> |
