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; };