Skip to content

Commit

Permalink
Fixed casing
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Nov 3, 2024
1 parent 92b574b commit ed35767
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/lib/multiselect/MultiSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ export const MultiSelect = React.memo(
return ObjectUtils.getJSXElement(props.selectedItemTemplate);
}

const onremoveTokenIconKeyDown = (event, val) => {
const onRemoveTokenIconKeyDown = (event, val) => {
event.preventDefault();
event.stopPropagation();

Expand Down Expand Up @@ -891,7 +891,7 @@ export const MultiSelect = React.memo(
{
className: cx('removeTokenIcon'),
onClick: (e) => removeChip(e, val),
onKeyDown: (e) => onremoveTokenIconKeyDown(e, val),
onKeyDown: (e) => onRemoveTokenIconKeyDown(e, val),
tabIndex: props.tabIndex || '0',
'aria-label': localeOption('removeTokenIcon')
},
Expand Down

0 comments on commit ed35767

Please sign in to comment.