Skip to content

Commit

Permalink
refactor: 💡 format:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hatsu38 committed Apr 25, 2023
1 parent 1394d6a commit 8af141f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
5 changes: 0 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,6 @@
"group": "external",
"position": "after"
},
{
"pattern": "{@contracter/src/models/**,@contracter/src/models}",
"group": "external",
"position": "after"
},
{
"pattern": "{@contracter/src/hooks/**,@contracter/src/hooks}",
"group": "internal",
Expand Down
9 changes: 1 addition & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"prettier": "^2.8.8",
"typescript-eslint": "^0.0.1-alpha.0"
"prettier": "^2.8.8"
}
}
3 changes: 2 additions & 1 deletion src/features/home/components/HomeLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export const HomeLayout = () => {
if (fileUrl) {
loadPdfUrl(fileUrl);
}
}, [file]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [file, loadPdfUrl]);

return (
<main className={"m-8 flex min-h-screen flex-col items-center pt-24"}>
Expand Down

0 comments on commit 8af141f

Please sign in to comment.