Merge pull request #850 from ente-io/remove-testing-console

remove testing console logs
This commit is contained in:
Abhinav Kumar 2023-01-06 13:06:14 +05:30 committed by GitHub
commit 74d9a28a1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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() &&