In my case I needed to pass the props to the li item for this to work. (MUI ver. 7.1.1 )
Ex;
renderOption={(props, option, state) => {
return (<li {...props}><div>{option.title}</div></li>);
}