From a58c64a52fa6cfc32edf7acb06bd5a0b810372b2 Mon Sep 17 00:00:00 2001 From: skiende74 Date: Thu, 26 Sep 2024 22:26:42 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9E=85=EC=A3=BC=EA=B0=80=EB=8A=A5?= =?UTF-8?q?=EC=9B=94=EC=9D=B4=200=EC=9D=B8=20=EC=97=90=EB=9F=AC.=20?= =?UTF-8?q?=EC=9B=90=EC=9D=B8:=20=EA=B8=B0=EB=B3=B8=EA=B0=92=20''->0?= =?UTF-8?q?=EC=9D=B4=EB=9D=BC=EC=84=9C.=20=20=EC=9E=85=EC=A3=BC=EA=B0=80?= =?UTF-8?q?=EB=8A=A5=EC=9B=94=20=EA=B8=B0=EB=B3=B8=EA=B0=92=20=ED=98=84?= =?UTF-8?q?=EC=9E=AC=EC=9B=94=EB=A1=9C=20=ED=95=A8.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/store/checklistRoomInfoStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/store/checklistRoomInfoStore.ts b/frontend/src/store/checklistRoomInfoStore.ts index c732c7fdf..52b2ceae3 100644 --- a/frontend/src/store/checklistRoomInfoStore.ts +++ b/frontend/src/store/checklistRoomInfoStore.ts @@ -25,7 +25,7 @@ const formSpec: FormSpec = { structure: { initialValue: '', type: 'string', validators: [] }, realEstate: { initialValue: '', type: 'string', validators: [] }, occupancyMonth: { - initialValue: '', + initialValue: `${new Date().getMonth() + 1}`, type: 'number', validators: [isIntegerValidator, positiveValidator, inRangeValidator(1, 12)], },