This repository was archived by the owner on Jun 28, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
components/lib/multistatecheckbox Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -154,7 +154,6 @@ export const MultiStateCheckbox = React.memo(
154154 const ariaProps = ObjectUtils . reduceKeys ( otherProps , DomHandler . ARIA_PROPS ) ;
155155 const icon = createIcon ( ) ;
156156 const ariaValueLabel = selectedOption ? getOptionAriaLabel ( selectedOption ) : ariaLabel ( 'nullLabel' ) ;
157- const ariaChecked = selectedOption ? 'true' : 'false' ;
158157
159158 const rootProps = mergeProps (
160159 {
@@ -177,8 +176,6 @@ export const MultiStateCheckbox = React.memo(
177176 onFocus : onFocus ,
178177 onBlur : onBlur ,
179178 onKeyDown : onKeyDown ,
180- role : 'checkbox' ,
181- 'aria-checked' : ariaChecked ,
182179 onChange : onClick ,
183180 checked : ! ! selectedOption ,
184181 disabled : props ?. disabled ,
You can’t perform that action at this time.
0 commit comments