Skip to content

Commit 6e27a16

Browse files
(Datepicker): remove incorrect aria-multiselectable
1 parent 3932ea3 commit 6e27a16

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/scripts/Datepicker.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -297,12 +297,7 @@ const DatepickerMonth = forwardRef(
297297
onDateKeyDown,
298298
} = props;
299299
return (
300-
<table
301-
ref={ref}
302-
className='slds-datepicker__month'
303-
role='grid'
304-
aria-multiselectable='true'
305-
>
300+
<table ref={ref} className='slds-datepicker__month' role='grid'>
306301
<thead>
307302
<tr>
308303
{dayjs.weekdaysMin(true).map((wd, i) => (

0 commit comments

Comments
 (0)