Browse Source

Avoid use of lodash.get

master
Loëck Vézien 7 years ago
parent
commit
a98d3e0768
No known key found for this signature in database GPG Key ID: CBCDCE384E853AC4
  1. 2
      src/components/OperationsList/index.js

2
src/components/OperationsList/index.js

@ -130,7 +130,7 @@ const Operation = ({
}) => {
const { unit } = account
const time = moment(tx.receivedAt)
const Icon = getIconByCoinType(get(account, 'currency.coinType'))
const Icon = getIconByCoinType(account.currency.coinType)
const type = tx.amount > 0 ? 'from' : 'to'
return (

Loading…
Cancel
Save