Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
feature: display tx amount without formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandomg committed Apr 24, 2020
1 parent e94a448 commit 9a18d1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const IncomingTxDescription = ({ tx }: Props) => {
const txFromName = getNameFromAddressBook(tx.from)
return (
<Block className={classes.txDataContainer}>
<TransferDescription from={tx.from} txFromName={txFromName} value={getIncomingTxAmount(tx)} />
<TransferDescription from={tx.from} txFromName={txFromName} value={getIncomingTxAmount(tx, false)} />
</Block>
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const TxDescription = ({ classes, tx }: Props) => {
removedOwner,
upgradeTx,
} = getTxData(tx)
const amount = getTxAmount(tx)
const amount = getTxAmount(tx, false)
return (
<Block className={classes.txDataContainer}>
{modifySettingsTx && action && (
Expand Down

0 comments on commit 9a18d1d

Please sign in to comment.