Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #232 from brave/fix-deposit-transactions-not-showing
Browse files Browse the repository at this point in the history
fix: deposit transactions not showing up
  • Loading branch information
bbondy authored Mar 17, 2021
2 parents 20de24d + 15b7298 commit f683a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/selectors/transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const incomingTxListSelector = (state) => {
return []
}

const network = state.metamask.network
const network = Number(state.metamask.network).toString()
const selectedAddress = getSelectedAddress(state)
return Object.values(state.metamask.incomingTransactions)
.filter(({ metamaskNetworkId, txParams }) => (
Expand Down

0 comments on commit f683a76

Please sign in to comment.