aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfrankiebee <frankie.diamond@gmail.com>2017-03-08 10:56:38 +0800
committerfrankiebee <frankie.diamond@gmail.com>2017-03-08 10:56:38 +0800
commit2f7a95c25765ec040eddb8f3103bfe60d4760a26 (patch)
tree24eb865c9a7fa35c33ddc5d98d117f1fbd56ef44
parentdba261db255d48f936eb2955bcb2cdb712768dd4 (diff)
downloadtangerine-wallet-browser-2f7a95c25765ec040eddb8f3103bfe60d4760a26.tar.gz
tangerine-wallet-browser-2f7a95c25765ec040eddb8f3103bfe60d4760a26.tar.zst
tangerine-wallet-browser-2f7a95c25765ec040eddb8f3103bfe60d4760a26.zip
Fix grammar in erro message
-rw-r--r--app/scripts/keyring-controller.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/keyring-controller.js b/app/scripts/keyring-controller.js
index 7669b9f8f..72f613641 100644
--- a/app/scripts/keyring-controller.js
+++ b/app/scripts/keyring-controller.js
@@ -188,7 +188,7 @@ class KeyringController extends EventEmitter {
switch (type) {
case 'Simple Key Pair':
let isNotIncluded = !accounts.find((key) => key === newAccount[0] || key === ethUtil.stripHexPrefix(newAccount[0]))
- return (isNotIncluded) ? Promise.resolve(newAccount) : Promise.reject(new Error('The account your are trying to import is a duplicate'))
+ return (isNotIncluded) ? Promise.resolve(newAccount) : Promise.reject(new Error('The account you\'re are trying to import is a duplicate'))
default:
return Promise.resolve(newAccount)
}