diff --git a/app/reducers/activity.js b/app/reducers/activity.js index c55325ab..f8db7870 100644 --- a/app/reducers/activity.js +++ b/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))) { diff --git a/package.json b/package.json index b1f54ff4..8c9e92dd 100644 --- a/package.json +++ b/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" } ] },