aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-12-12 16:51:13 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-12-12 16:51:13 +0100
commit9b18c87deb904d83ae5748236dff70de7c5fa656 (patch)
tree7ad8ffe0d9794f3cb45b26c40b5db657d8974293
parent9f3a9a65f7244d837f545025b8b5bb45f5339c6f (diff)
downloadwallet-core-9b18c87deb904d83ae5748236dff70de7c5fa656.tar.xz
typos
-rw-r--r--src/wallet.ts2
-rw-r--r--src/webex/pages/popup.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 9e8eb3f3e..2ab24571c 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -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,
diff --git a/src/webex/pages/popup.tsx b/src/webex/pages/popup.tsx
index 6d1ff3b2b..ded430d2b 100644
--- a/src/webex/pages/popup.tsx
+++ b/src/webex/pages/popup.tsx
@@ -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>
);
}