From 5ef16c7e82a6a07b200e2af16d7c9573610230da Mon Sep 17 00:00:00 2001 From: Jonathan Perry Date: Fri, 17 Jan 2025 20:37:39 +0000 Subject: [PATCH] Husky --- .husky/post-commit.cjs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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()) )