Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
psybers committed Oct 22, 2024
1 parent 11e650d commit a9cab1d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app-simplefin/app-simplefin.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,11 @@ app.post(
: startDate;
let results;
try {
results = await getTransactions(accessKey, Array.isArray(accountId) ? accountId : [accountId], new Date(earliestStartDate));
results = await getTransactions(
accessKey,
Array.isArray(accountId) ? accountId : [accountId],
new Date(earliestStartDate),
);
} catch (e) {
if (e.message === 'Forbidden') {
invalidToken(res);
Expand Down

0 comments on commit a9cab1d

Please sign in to comment.