Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Betree committed Jan 21, 2025
1 parent eeeee32 commit 12c5216
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/server/controllers/account-transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,6 @@ const accountTransactions: RequestHandler<Params> = async (req, res) => {
const mapping = pick(csvMapping, fields);

const mappedTransactions = result.transactions.nodes.map((t) => applyMapping(mapping, t));
console.log(result.transactions.nodes[0], mappedTransactions[0]);
res.write(json2csv(mappedTransactions, {}));
res.write(`\n`);

Expand Down

0 comments on commit 12c5216

Please sign in to comment.