From fd5604ce99c5dadc198a162f0996c4e0ed1e495b Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Thu, 15 Jun 2023 18:43:07 +0200 Subject: [PATCH] chore: show future posts by default --- src/utils/format-posts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/format-posts.ts b/src/utils/format-posts.ts index e217c70..1381ce8 100644 --- a/src/utils/format-posts.ts +++ b/src/utils/format-posts.ts @@ -6,7 +6,7 @@ export const formatPosts = ( posts: CollectionEntry<'journal'>[], { removeDrafts = true, - removeFuture = true, + removeFuture = false, showFeatured, sortBy = 'date', sortOrder = 'desc',