Browse Source

Merge pull request #551 from mrfelton/fix/sent-vs-received-tx

Don't show sent for received tx
renovate/lint-staged-8.x
Ben Woosley 7 years ago
committed by GitHub
parent
commit
7375f3b360
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/components/Activity/TransactionModal.js

2
app/components/Activity/TransactionModal.js

@ -31,7 +31,7 @@ const TransactionModal = ({
}) => (
<div className={styles.container}>
<header className={styles.header}>
{transaction.amount > 0 ? (
{transaction.amount < 0 ? (
<section>
<Isvg src={paperPlane} />
<span>Sent</span>

Loading…
Cancel
Save