From 2290316cd7530b519d1828828811f4942a1946ac Mon Sep 17 00:00:00 2001 From: hamo-o Date: Thu, 5 Sep 2024 00:55:48 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B6=88=ED=95=84=EC=9A=94=ED=95=9C=20c?= =?UTF-8?q?onsole.log=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/admin/utils/getIsCurrentWeek.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/admin/utils/getIsCurrentWeek.ts b/apps/admin/utils/getIsCurrentWeek.ts index 508c4f29..ca52ca97 100644 --- a/apps/admin/utils/getIsCurrentWeek.ts +++ b/apps/admin/utils/getIsCurrentWeek.ts @@ -4,7 +4,6 @@ const getIsCurrentWeek = (dateString: string): boolean => { const diffInTime = today.getTime() - startDate.getTime(); const diffInDays = Math.floor(diffInTime / (1000 * 60 * 60 * 24)); - console.log(diffInDays); return 0 <= diffInDays && diffInDays < 7; };