Skip to content

Commit

Permalink
apply prettier update
Browse files Browse the repository at this point in the history
  • Loading branch information
znarf committed Nov 21, 2023
1 parent 6602de9 commit e36414b
Showing 1 changed file with 3 additions and 3 deletions.
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 e36414b

Please sign in to comment.