diff --git a/frontend/src/Components/Form/Select/QualityProfileSelectInput.tsx b/frontend/src/Components/Form/Select/QualityProfileSelectInput.tsx index ac611481f3..c74bf325b1 100644 --- a/frontend/src/Components/Form/Select/QualityProfileSelectInput.tsx +++ b/frontend/src/Components/Form/Select/QualityProfileSelectInput.tsx @@ -88,13 +88,10 @@ function QualityProfileSelectInput({ ); const handleChange = useCallback( - ({ value: newValue }: EnhancedSelectInputChanged) => { - onChange({ - name, - value: newValue === 'noChange' ? value : newValue, - }); + ({ value }: EnhancedSelectInputChanged) => { + onChange({ name, value }); }, - [name, value, onChange] + [name, onChange] ); useEffect(() => {