Can you please let us know what this function handleBullPickerChanged(row,pack,e)?
Also, you can use onChange property as follows:
onChange={(e, newValue) =>
handleBullPickerChanged(
row,
pack,
newValue
)
}
where newValue will return you the selected option object.