diff --git a/src/components/Select/Select.tsx b/src/components/Select/Select.tsx index ee12407d55..b23095957d 100644 --- a/src/components/Select/Select.tsx +++ b/src/components/Select/Select.tsx @@ -112,7 +112,7 @@ export const Select = React.forwardRef(function const handleOptionClick = React.useCallback( (option?: FlattenOption) => { - if (!option || 'label' in option) { + if (!option || option?.disabled || 'label' in option) { return; }