aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/pending-tx.js')
-rw-r--r--ui/app/components/pending-tx.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index 197e0436c..5d1fd4c16 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -36,14 +36,14 @@ PendingTx.prototype.render = function () {
h('.flex-row.flex-space-around', [
h('button', {
onClick: state.cancelTransaction,
- }, 'Cancel'),
+ }, 'Reject'),
h('button', {
onClick: state.sendTransaction,
- }, 'Send'),
+ }, 'Approve'),
]),
])
-
+
)
}