Skip to content

Commit

Permalink
Don't remove old posts from the feed
Browse files Browse the repository at this point in the history
  • Loading branch information
horo-fox committed Feb 29, 2024
1 parent 4f8dc5c commit e47a8e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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) => (
<li>
<p>
Expand Down

0 comments on commit e47a8e9

Please sign in to comment.