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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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> |
|
|
|