Skip to content

Commit

Permalink
lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
guglicap committed Nov 29, 2024
1 parent dc537e5 commit 9acb9e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app-gocardless/banks/hype_hyeeit22.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export default {
accessValidForDays: 90,

normalizeTransaction(transaction, _booked) {

/** Online card payments - identified by "crd" transaction code
* always start with PAGAMENTO PRESSO + <payee name>
*/
Expand All @@ -36,8 +35,9 @@ export default {
let infoIdx =
transaction.remittanceInformationUnstructured.indexOf(' - ') + 3;
transaction.remittanceInformationUnstructured =
infoIdx == -1 ? transaction.remittanceInformationUnstructured :
transaction.remittanceInformationUnstructured.slice(infoIdx).trim();
infoIdx == -1
? transaction.remittanceInformationUnstructured
: transaction.remittanceInformationUnstructured.slice(infoIdx).trim();
}
/**
* CONVERT ESCAPED UNICODE TO CODEPOINTS
Expand Down

0 comments on commit 9acb9e3

Please sign in to comment.