From 1d28285eef738202488c6c394c9d85ec1cd89436 Mon Sep 17 00:00:00 2001 From: Anuj Chhikara <107175639+AnujChhikara@users.noreply.github.com> Date: Sun, 13 Oct 2024 22:40:58 +0530 Subject: [PATCH] chore: remove unnecessary console.log statements (#616) --- app/helpers/convertDate.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/helpers/convertDate.js b/app/helpers/convertDate.js index e7e235c9..bbc84cef 100644 --- a/app/helpers/convertDate.js +++ b/app/helpers/convertDate.js @@ -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' }; }