Skip to content

Commit

Permalink
chore: remove unnecessary console.log statements (#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnujChhikara authored Oct 13, 2024
1 parent d557315 commit 1d28285
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions app/helpers/convertDate.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ const timeDifference = (timestamp, timeNow) => {
const months = Math.floor(days / 30);
const years = Math.floor(months / 12);

console.log({ timeInSec, mins, hours, days, months, years }); // Debug log

if (timeInSec < 1) {
return { result: '', cycle: 'just now' };
}
Expand Down

0 comments on commit 1d28285

Please sign in to comment.