From 994652138ce152669a5b571b62a91461988ae54a Mon Sep 17 00:00:00 2001 From: soohyun Date: Wed, 10 Jul 2024 20:55:08 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=ED=83=80=EC=9E=85=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/parseDate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/parseDate.ts b/src/utils/parseDate.ts index 544ce73..cf35c0b 100644 --- a/src/utils/parseDate.ts +++ b/src/utils/parseDate.ts @@ -1,4 +1,4 @@ -const parseDate = (value: Date) => { +const parseDate = (value: Date | string) => { const date = new Date(value); const year = date.getFullYear(); const month = date.getMonth() + 1;