Skip to content

Commit

Permalink
fix(linter): remove extra semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
oyo authored Oct 20, 2023
2 parents e1eb651 + 5c6a987 commit 32eee28
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
"@typescript-eslint/comma-dangle": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-empty-function": 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,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@catena-x/portal-shared-components",
"version": "2.1.7",
"version": "2.1.9",
"description": "Catena-X Portal Shared Components",
"author": "Catena-X Contributors",
"license": "Apache-2.0",
Expand Down
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 32eee28

Please sign in to comment.