Skip to content

Commit

Permalink
Fixing DropdownOption eslint use
Browse files Browse the repository at this point in the history
  • Loading branch information
carloslimasd committed Oct 31, 2024
1 parent 0ea8e32 commit fe86ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playbook/app/pb_kits/playbook/pb_dropdown/_dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
<DropdownContainer>
{optionsWithBlankSelection &&
optionsWithBlankSelection?.map((option: GenericObject) => (
<Dropdown.Option key={option.id}
<DropdownOption key={option.id}
option={option}
/>
))}
Expand Down

0 comments on commit fe86ade

Please sign in to comment.