Skip to content

Commit

Permalink
bugfix: remove unwanted semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
manojava-gk committed Nov 23, 2023
1 parent 42669e4 commit 95916f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/basic/Menu/MenuItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const MenuItem = ({
onMouseEnter={onMouseEnter}
onMouseLeave={onMouseLeave}
onClick={(e) => {
;(onClick == null || disable) ?? onClick(e)
(onClick == null || disable) ?? onClick(e)
}}
>
<Link
Expand Down

0 comments on commit 95916f1

Please sign in to comment.