From e0845fb33539753b69fe22ea949d470188488465 Mon Sep 17 00:00:00 2001
From: Ali Asaria <ali.asaria@gmail.com>
Date: Tue, 14 May 2024 09:54:38 -0400
Subject: [PATCH] remove console.log in logs

---
 src/renderer/components/Logs.tsx | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/src/renderer/components/Logs.tsx b/src/renderer/components/Logs.tsx
index 1fc0a5a4..0fc0acff 100644
--- a/src/renderer/components/Logs.tsx
+++ b/src/renderer/components/Logs.tsx
@@ -26,13 +26,6 @@ function isToday(someDateString) {
   const someDate = new Date(someDateString);
   const today = new Date();
 
-  const t =
-    someDate.getDate() === today.getDate() &&
-    someDate.getMonth() === today.getMonth() &&
-    someDate.getFullYear() === today.getFullYear();
-
-  console.log(t);
-  console.log(someDate + ' - ' + today);
   return (
     someDate.getDate() === today.getDate() &&
     someDate.getMonth() === today.getMonth() &&
-- 
GitLab