diff --git a/app/routes/activity/components/components/Invoice/Invoice.js b/app/routes/activity/components/components/Invoice/Invoice.js index 19ff1861..dfed4695 100644 --- a/app/routes/activity/components/components/Invoice/Invoice.js +++ b/app/routes/activity/components/components/Invoice/Invoice.js @@ -32,8 +32,13 @@ const Invoice = ({ invoice, ticker, currentTicker, showActivityModal, currencyNa -
- +
+ + {currencyName} diff --git a/app/routes/activity/components/components/Payment/Payment.js b/app/routes/activity/components/components/Payment/Payment.js index 565aa95c..4ad30f97 100644 --- a/app/routes/activity/components/components/Payment/Payment.js +++ b/app/routes/activity/components/components/Payment/Payment.js @@ -35,15 +35,13 @@ const Payment = ({ payment, ticker, currentTicker, showActivityModal, nodes, cur {payment.creation_date * 1000}
-
- +
+ - {currencyName} - - ${btc.convert('sats', 'usd', payment.value, currentTicker.price_usd)} - + ${btc.convert('sats', 'usd', payment.value, currentTicker.price_usd)}
) diff --git a/app/routes/activity/components/components/Transaction/Transaction.js b/app/routes/activity/components/components/Transaction/Transaction.js index 45ff6a4a..c4c303d4 100644 --- a/app/routes/activity/components/components/Transaction/Transaction.js +++ b/app/routes/activity/components/components/Transaction/Transaction.js @@ -27,8 +27,13 @@ const Transaction = ({ transaction, ticker, currentTicker, showActivityModal, cu {transaction.time_stamp * 1000} -
- +
+ {transaction.received ? '+' : '-'} @@ -39,9 +44,7 @@ const Transaction = ({ transaction, ticker, currentTicker, showActivityModal, cu /> {currencyName} - - ${btc.convert('sats', 'usd', transaction.amount, currentTicker.price_usd)} - + ${btc.convert('sats', 'usd', transaction.amount, currentTicker.price_usd)}
)