diff --git a/src/routes/dashboard/account-route.js b/src/routes/dashboard/account-route.js index c0394d2..bb8002b 100644 --- a/src/routes/dashboard/account-route.js +++ b/src/routes/dashboard/account-route.js @@ -172,8 +172,8 @@ class AccountRoute extends PolymerElement {
- Choose your desired Worbli account name
- (6-12 characters, must start with a letter and can only contain letters and numbers 1-5).

+ Choose your desired Worbli account name.
+ (6-12 characters, must start with a letter and can only contain letters and numbers 1-5)

Note: high profile trademarked names such as "google", "facebook", etc. are not allowed and accounts that have chosen such names will be frozen.

[[worbliAccountNameError]]
@@ -189,7 +189,7 @@ class AccountRoute extends PolymerElement {
- +

Not sure what public keys are?
Check out our FAQ on how to generate a public key with Scatter. @@ -315,7 +315,7 @@ _applyAccount(data){ const ownerConfirmed = this._validatePublicKey(public_key_owner); if(!activeConfirmed){this.publicKeyActiveError = "Wrong public key format. Make sure you are not pasting your private key."; check = false} if(!ownerConfirmed){this.publicKeyOwnerError = "Wrong public key format. Make sure you are not pasting your private key."; check = false} - if(!nameConfirmed){this.worbliAccountNameError = "Account name must be between 6 and 12 characters, must start with a letter and can contain only lowercase letters and numbers 1-5. And must not contain the word worbli"; check = false;} + if(!nameConfirmed){this.worbliAccountNameError = "Account name must be between 6 and 12 characters, must start with a letter, can contain only lowercase letters and numbers 1-5, and cannot contain the word worbli"; check = false;} if(check === true){ const data = {worbli_account_name, public_key_active, public_key_owner} const token = localStorage.getItem("token");