From c59d083faa217205aa3f50211d7a04e7ac01edb9 Mon Sep 17 00:00:00 2001 From: Michael Neeley Date: Thu, 8 Jun 2023 14:51:20 -0400 Subject: [PATCH] adds-underscore --- src/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.js b/src/utils.js index 071f5d0..99cbe21 100644 --- a/src/utils.js +++ b/src/utils.js @@ -33,7 +33,7 @@ const PROMISE_DELAY = 200; const MAX_NAME_LENGTH = 30; const NON_LANGUAGE_ALPHANUMERIC_REGEX = /[^\p{L}\p{N}]+/gu; const MIN_LANGUAGE_ALPHANUMERIC_NAME_LENGTH = 4; -const VALID_ANDROID_BUNDLE_ID_REGEX = /^[a-zA-Z]{1}[a-zA-Z0-9\.]{1,}$/; +const VALID_ANDROID_BUNDLE_ID_REGEX = /^[a-zA-Z]{1}[a-zA-Z0-9\._]{1,}$/; const VALID_IOS_BUNDLE_ID_REGEX = /^[a-zA-Z]{1}[a-zA-Z0-9\.\-]{1,}$/; const pluralize = (count, noun, suffix = 'es') => `${count} ${noun}${count !== 1 ? suffix : ''}`;