diff --git a/src/utils.js b/src/utils.js index 86ff2a1d081c3c2e7765b39e87cbf03abd5da1a2..eecb4d8ecc6da949c7ac3599a45d388036a9e8d2 100644 --- a/src/utils.js +++ b/src/utils.js @@ -46,9 +46,10 @@ export function validateAccountName(value) { if (!/^[a-z0-9-]*$/.test(label)) { return suffix + "have only letters, digits, or dashes."; } - if (/--/.test(label)) { - return suffix + "have only one dash in a row."; - } + // Multiple dashes in a row is VALID + // if (/--/.test(label)) { + // return suffix + "have only one dash in a row."; + // } if (!/[a-z0-9]$/.test(label)) { return suffix + "end with a letter or digit."; }