diff --git a/src/components/input/SelectInput.tsx b/src/components/input/SelectInput.tsx index d7b13529..32d26866 100644 --- a/src/components/input/SelectInput.tsx +++ b/src/components/input/SelectInput.tsx @@ -146,7 +146,7 @@ const SelectInput = (props: SelectInputProps) => { > instanceId='select' value={value ?? (isMulti ? [] : null)} - onChange={handleChange} + onChange={onChange ? handleChange : undefined} options={options} menuIsOpen={openMenu} inputValue={internalInputValue}