diff --git a/.husky/post-commit.cjs b/.husky/post-commit.cjs index dd14005..25661b5 100644 --- a/.husky/post-commit.cjs +++ b/.husky/post-commit.cjs @@ -1,8 +1,4 @@ module.exports = ( import('./hooks/index.mjs') - .then(({ - postCommit - }) => ( - postCommit() - )) + .then(({ postCommit }) => postCommit()) )