Material-UI: Un composant modifie l'état de valeur par défaut d'un sélection non contrôlé après avoir été initialisé. Pour supprimer cet avertissement, optez d'utiliser un choix contrôlé.

/** Uncontrolled here means you may be setting the value
of the Select component to undefined, this is because 
value={props.selectedValue} here. In this the props or 
selectedValue may come null so it turns out to be a
uncontrolled component in that.
To solve the warning you can add condition to check null 
and set default value.
*/

value={props.selectedValue ? props.selectedValue : " "}
Salo Hopeless