Skip to content

Commit

Permalink
chore: Remove unused description field from RSS feed generation
Browse files Browse the repository at this point in the history
  • Loading branch information
pranshu05 committed May 27, 2024
1 parent deefcca commit 85982bf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/RSS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
Expand Down

0 comments on commit 85982bf

Please sign in to comment.