Skip to content

Commit

Permalink
remove unused props
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed Hussein committed Jul 2, 2024
1 parent 02af8ed commit dc382c9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"no-use-before-define": "off", // since we are using airbnb, it turns this on, we need to disabled it @see https://stackoverflow.com/a/64024916/1931451
"@typescript-eslint/no-use-before-define": "off",
"no-shadow": "off", // we need to disable this @see https://stackoverflow.com/a/63961972/1931451
"@typescript-eslint/no-shadow": ["error"],
"@typescript-eslint/no-shadow": 2,
"react/jsx-filename-extension": 0,
"react/jsx-props-no-spreading": 0,
"react/function-component-definition": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ const CollectionDetailContainer = ({
bookmarks={bookmarks}
sortBy={sortBy}
onSortByChange={onSortByChange}
onUpdated={onUpdated}
onItemDeleted={onItemDeleted}
isOwner={isOwner}
/>
Expand Down

0 comments on commit dc382c9

Please sign in to comment.