Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Increase Token Symbol length to twelve #5816

Merged
merged 1 commit into from
Nov 24, 2018
Merged

Increase Token Symbol length to twelve #5816

merged 1 commit into from
Nov 24, 2018

Conversation

tmashuang
Copy link
Contributor

Fixes #5815. Special characters aren't the issue, it is just the text length.

@metamaskbot
Copy link
Collaborator

Builds ready [4054b1c]: mascara, chrome, firefox, edge, opera

@@ -194,8 +194,8 @@ class AddToken extends Component {
const symbolLength = customSymbol.length
let customSymbolError = null

if (symbolLength <= 0 || symbolLength >= 10) {
customSymbolError = this.context.t('symbolBetweenZeroTen')
if (symbolLength <= 0 || symbolLength >= 12) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could have been a smaller PR to just change the >= to > but increasing just to be safe.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants