When using react-select it is not auto sizing by option value, but using width:100% as you can see in picture:
react-select
width:100%
Options are short:<
if you're using react-select v3 you can use customStyles object:
const customStyles = { container: provided => ({ ...provided, width: 150 }) };