Skip to content

Commit

Permalink
fix: 불필요한 console.log 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
hamo-o committed Sep 4, 2024
1 parent 5b535a5 commit 2290316
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/admin/utils/getIsCurrentWeek.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 2290316

Please sign in to comment.