Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
DevNono committed Sep 17, 2023
1 parent b311ec5 commit 45a5cb9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"eol-last": "off",
"no-console": "error",
"no-alert": "error",
"no-use-before-define": "off",
"object-curly-newline": "off",
"import/default": "off",
"import/no-cycle": "off",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
},
"devDependencies": {
"@types/bluebird": "^3.5.37",
"@types/body-parser": "^1.19.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/helmet": "^4.0.0",
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion src/middlewares/isBuck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default async (
)
return notModified(res);
return next();
} else if (payload.pointOfSaleId === process.env.ENTRY_SALE_POINT_ID) {
} if (payload.pointOfSaleId === process.env.ENTRY_SALE_POINT_ID) {
return success(res, {});
}
}
Expand Down

0 comments on commit 45a5cb9

Please sign in to comment.