From 85982bf1cc55896363ecb49fb74d2023a4f6a7c9 Mon Sep 17 00:00:00 2001 From: Pranshu Patel Date: Tue, 28 May 2024 00:09:20 +0530 Subject: [PATCH] chore: Remove unused description field from RSS feed generation --- src/lib/RSS.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/RSS.ts b/src/lib/RSS.ts index c806452..22446b9 100644 --- a/src/lib/RSS.ts +++ b/src/lib/RSS.ts @@ -13,7 +13,6 @@ export const generateRSSFeed = (posts: Post[]) => { posts.forEach(post => { feed.item({ title: post.frontmatter.title, - description: post.frontmatter.description, url: `https://pranshu05.vercel.app/posts/${post.slug}`, date: post.frontmatter.date, });