From e47a8e94136c4357fd3aadc65a25c1065ada9a69 Mon Sep 17 00:00:00 2001 From: horo <143025439+horo-fox@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:46:29 +0900 Subject: [PATCH] Don't remove old posts from the feed --- src/pages/index.astro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index b03bb8b..d97e990 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -115,10 +115,10 @@ const profileData = profile( b.data.published.getTime() - a.data.published.getTime(), ) - .filter((post, i) => { - // todo: this should *probably* be like < 10 or something - return i / post.data.quality < 15; - }) + // .filter((post, i) => { + // // todo: this should *probably* be like < 10 or something + // return i / post.data.quality < 15; + // }) .map((post) => (