From 20e08e6802cf1e08e465f1fc254b2ee1d9c79546 Mon Sep 17 00:00:00 2001 From: lydiacho Date: Tue, 30 Jul 2024 22:13:58 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20textInput=20pattern=20&=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/constants/validationCheck.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/constants/validationCheck.ts b/src/common/constants/validationCheck.ts index 6cef8be9..c0a69866 100644 --- a/src/common/constants/validationCheck.ts +++ b/src/common/constants/validationCheck.ts @@ -55,7 +55,7 @@ export const VALIDATION_CHECK = { errorText: '잘못된 입력 형식이에요.', }, textInput: { - pattern: /^[가-힣\s.,·()\-a-zA-Z\d]+$/, + pattern: /^[가-힣\s.,·()\-a-zA-Z\d&]+$/, maxLength: 40, errorText: '잘못된 입력 형식이에요.', },