+ About FIDO authentication
+
+ This feature is only available for websites with configured domains, and
+ we detected that a domain is not configured at the moment.
+
+
+ Make sure that a domain is configured for this website and try again
+ later.
+
+
+
+
+
+ )
+}
+
+export default ChangeRoleModal
diff --git a/new-lamassu-admin/src/utils/constants.js b/new-lamassu-admin/src/utils/constants.js
index a17f6fa0..6b828dfd 100644
--- a/new-lamassu-admin/src/utils/constants.js
+++ b/new-lamassu-admin/src/utils/constants.js
@@ -6,11 +6,14 @@ const WALLET_SCORING_DEFAULT_THRESHOLD = 9
const AUTOMATIC = 'automatic'
const MANUAL = 'manual'
+const IP_CHECK_REGEX = /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/
+
export {
CURRENCY_MAX,
MIN_NUMBER_OF_CASSETTES,
MAX_NUMBER_OF_CASSETTES,
AUTOMATIC,
MANUAL,
- WALLET_SCORING_DEFAULT_THRESHOLD
+ WALLET_SCORING_DEFAULT_THRESHOLD,
+ IP_CHECK_REGEX
}