Remove log

This commit is contained in:
Jade Ellis 2024-11-24 04:36:35 +00:00
parent c73b7baaf5
commit 16edacaeff
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2

View file

@ -23,7 +23,6 @@ export async function GET({ url, params }) {
const selectedPages = dateParts?.length ? pages
.filter((post) => {
console.log("filtering")
const date = new Date(post.date)
return (
(!dateParts[0] || date.getFullYear() == dateParts[0]) &&