diff --git a/src/components/atoms/Form/Input.tsx b/src/components/atoms/Form/Input.tsx index 1d6a3a5..ad74e73 100644 --- a/src/components/atoms/Form/Input.tsx +++ b/src/components/atoms/Form/Input.tsx @@ -76,16 +76,18 @@ export default class Input extends PureComponent { > {options && - options.map((option: string, index: number) => ( - - ))} + options + .sort((a, b) => a.localeCompare(b)) + .map((option: string, index: number) => ( + + ))} )