This commit is contained in:
Florian Dold 2017-12-12 16:51:13 +01:00
parent 9f3a9a65f7
commit 9b18c87deb
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 2 additions and 2 deletions

View File

@ -2377,7 +2377,7 @@ export class Wallet {
detail: {
merchantDomain: tip.merchantDomain,
amount: tip.amount,
reservePub: tip.accepted,
accepted: tip.accepted,
tipId: tip.tipId,
},
timestamp: tip.timestamp,

View File

@ -409,7 +409,7 @@ function formatHistoryItem(historyItem: HistoryRecord) {
<i18n.Translate wrap="p">
Merchant <span>{d.merchantDomain}</span> gave a <a href={url} onClick={openTab(url)}> tip</a> of <span>{renderAmount(d.amount)}</span>.
<span> </span>
{d.accepted ? null : <span>You did not accepted the tip yet.</span> }
{ d.accepted ? null : <span>You did not accept the tip yet.</span> }
</i18n.Translate>
);
}