Skip to content
This repository was archived by the owner on Jun 28, 2026. It is now read-only.

Commit 53e7bcd

Browse files
Fix MultiSelect non-unique keys (#8050)
1 parent 8735633 commit 53e7bcd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/lib/multiselect/MultiSelectItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const MultiSelectItem = React.memo((props) => {
7878
);
7979

8080
return (
81-
<li {...itemProps} key={props.index + '_multiselectitem'}>
81+
<li {...itemProps}>
8282
<div {...checkboxContainerProps}>
8383
<Checkbox ref={checkboxRef} checked={props.selected} icon={checkboxIcon} pt={ptm('checkbox')} unstyled={isUnstyled()} tabIndex={-1} />
8484
</div>

0 commit comments

Comments
 (0)