Skip to content

Commit

Permalink
fix(custom-select) avoid invalid label on custom select options
Browse files Browse the repository at this point in the history
Signed-off-by: David Edler <[email protected]>
  • Loading branch information
edlerd committed Nov 26, 2024
1 parent b452c41 commit 158d70c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/components/select/CustomSelectDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ const CustomSelectDropdown: FC<Props> = ({
const optionItems = filteredOptions.map((option, idx) => {
return (
<li
{...option}
key={`${option.value}-${idx}`}
onClick={() => handleSelect(option)}
className={classnames(
Expand Down

0 comments on commit 158d70c

Please sign in to comment.