From 83944f7e7a085df1175b2315b4903fa34487c085 Mon Sep 17 00:00:00 2001 From: Abhinav Date: Fri, 6 Jan 2023 13:04:15 +0530 Subject: [PATCH] remove testing console.log --- src/components/PhotoList.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/components/PhotoList.tsx b/src/components/PhotoList.tsx index 7aff6461a..a7e7cf3cb 100644 --- a/src/components/PhotoList.tsx +++ b/src/components/PhotoList.tsx @@ -354,13 +354,6 @@ export function PhotoList({ }; const isSameDay = (first, second) => { - console.log( - first, - second, - first.getFullYear() === second.getFullYear(), - first.getMonth() === second.getMonth(), - first.getDate() === second.getDate() - ); return ( first.getFullYear() === second.getFullYear() && first.getMonth() === second.getMonth() &&