Browse Source

fix(lint): fix linting errors

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
919d71f109
  1. 2
      app/reducers/activity.js
  2. 4
      package.json

2
app/reducers/activity.js

@ -98,7 +98,7 @@ const allActivity = createSelector(
invoicesSelector,
transactionsSelector,
(searchText, payments, invoices, transactions) => {
const searchedArr = [...payments, ...invoices, ...transactions].filter(tx => {
const searchedArr = [...payments, ...invoices, ...transactions].filter((tx) => {
if ((tx.tx_hash && tx.tx_hash.includes(searchText)) ||
(tx.payment_hash && tx.payment_hash.includes(searchText)) ||
(tx.r_hash && tx.r_hash.includes(searchText))) {

4
package.json

@ -82,8 +82,8 @@
},
"extraResources": [
{
"from": "./resources/bin/darwin/lnd",
"to": "./bin/lnd"
"from": "./resources/bin/win32/lnd.exe",
"to": "./bin/lnd.exe"
}
]
},

Loading…
Cancel
Save