Skip to content

Commit

Permalink
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -31,8 +31,6 @@
"react/react-in-jsx-scope": 0,
"@typescript-eslint/comma-dangle": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 1,
"@typescript-eslint/no-extra-semi": 0,
"@typescript-eslint/no-unsafe-argument": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-unsafe-call": 0,
2 changes: 1 addition & 1 deletion src/components/basic/Menu/MenuItem.tsx
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ export const MenuItem = ({
onMouseEnter={onMouseEnter}
onMouseLeave={onMouseLeave}
onClick={(e) => {
;(onClick == null || disable) ?? onClick(e)
(onClick == null || disable) ?? onClick(e)
}}
>
<Link

0 comments on commit 95ca12d

Please sign in to comment.