From e3ae54f1517284991ff40b639c9c277a4abfb5c3 Mon Sep 17 00:00:00 2001 From: seokmin Date: Tue, 5 Dec 2023 22:06:06 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EA=B7=B8=EB=A3=B9=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1=20=EC=A0=9C=EB=AA=A9=20=EA=B8=80=EC=9E=90=EC=88=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20=EB=B0=8F=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=95=84=EC=9D=B4=EB=94=94=20=EB=84=A3=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/LoginModal.tsx | 2 ++ src/pages/CreateGroupPage/index.tsx | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/LoginModal.tsx b/src/components/LoginModal.tsx index 87fcc7e..dc4d89d 100644 --- a/src/components/LoginModal.tsx +++ b/src/components/LoginModal.tsx @@ -66,6 +66,7 @@ export default function LoginModal({ open, onClose }: ModalProps) { id="email" type="email" autoComplete="email" + defaultValue={'test@test.com'} required className="px-3 block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6" {...register('email', { @@ -87,6 +88,7 @@ export default function LoginModal({ open, onClose }: ModalProps) { id="password" type="password" autoComplete="current-password" + defaultValue={'1234'} required className="px-3 block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6" {...register('password', { diff --git a/src/pages/CreateGroupPage/index.tsx b/src/pages/CreateGroupPage/index.tsx index 4d69be5..64b0510 100644 --- a/src/pages/CreateGroupPage/index.tsx +++ b/src/pages/CreateGroupPage/index.tsx @@ -135,10 +135,10 @@ export default function CreateGroupPage() { type="text" {...register('name', { required: '스터디 이름을 작성해주세요!', - maxLength: { value: 10, message: '스터디 이름은 최대 10글자입니다!' }, + maxLength: { value: 20, message: '스터디 이름은 최대 20글자입니다!' }, })} className="w-full border rounded-md py-1 pl-3" - placeholder="스터디 이름을 입력하세요. (최대 10글자)" + placeholder="스터디 이름을 입력하세요. (최대 20글자)" />