From d472af277f3e04fbed9bc4a1b3f266f59d31d74b Mon Sep 17 00:00:00 2001 From: thefourCraft Date: Sun, 2 Jul 2023 21:14:24 +0300 Subject: [PATCH] =?UTF-8?q?fix=20DOMAIN=5FREGEX=20for=20.=D7=99=D7=A9?= =?UTF-8?q?=D7=A8=D7=90=D7=9C=20IDN's=20to=20work=20:)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/constants.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/constants.ts b/lib/constants.ts index 425d729f..bb9571fb 100644 --- a/lib/constants.ts +++ b/lib/constants.ts @@ -144,8 +144,9 @@ export const EVENT_COLORS = [ '#ffec16', ]; -export const DOMAIN_REGEX = - /^(localhost(:[1-9]\d{0,4})?|((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63})$/; +export const DOMAIN_REGEX = + /^(localhost(:[1-9]\d{0,4})?|((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9-]+(-[a-z0-9-]+)*\.)+(xn--)?[a-z0-9-]{2,63})$/; + export const DESKTOP_SCREEN_WIDTH = 1920; export const LAPTOP_SCREEN_WIDTH = 1024;