Skip to content

Commit

Permalink
chore(deps): update dependency prettier to v3 (#505)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency prettier to v3

* apply prettier update

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: François Hodierne <[email protected]>
  • Loading branch information
renovate[bot] and znarf authored Nov 21, 2023
1 parent 92b2262 commit 749b943
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
21 changes: 12 additions & 9 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"lint-staged": "^13.0.3",
"nodemon": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.0"
"prettier": "^3.0.0"
},
"config": {
"commitizen": {
Expand Down
6 changes: 3 additions & 3 deletions src/server/controllers/account-transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -373,9 +373,9 @@ const accountTransactions = async (req, res) => {
req.method === 'HEAD'
? 0
: // Else, we use the limit provided by the user, or default to 1000
variables.limit
? Number(variables.limit)
: 1000;
variables.limit
? Number(variables.limit)
: 1000;
variables.offset = Number(variables.offset) || 0;

if (variables.account) {
Expand Down

0 comments on commit 749b943

Please sign in to comment.