Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
vineethasok committed Sep 29, 2023
1 parent 4bafcdb commit 263c0c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Dropdown/Dropdown.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface Props extends DropdownMenuProps {
side: "top" | "right" | "left" | "bottom";
type: "text" | "button";
}
const DropdownExample = ({ showArrow, disabled, side, type, ...props }: Props) => {
const DropdownExample = ({ showArrow, disabled, side, ...props }: Props) => {
return (
<GridCenter>
<Dropdown {...props}>
Expand Down

0 comments on commit 263c0c9

Please sign in to comment.