From c5b7ab80af079da7333b2e2d5fe1f2fd21ac7570 Mon Sep 17 00:00:00 2001 From: Alexey Chernyavskiy Date: Sun, 27 Jul 2025 09:23:26 +0500 Subject: [PATCH] Removed accidentally included changes from another commit. --- quartz/components/RecentNotes.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/quartz/components/RecentNotes.tsx b/quartz/components/RecentNotes.tsx index 1fd315bac..2c32feadf 100644 --- a/quartz/components/RecentNotes.tsx +++ b/quartz/components/RecentNotes.tsx @@ -13,7 +13,6 @@ interface Options { limit: number linkToMore: SimpleSlug | false showTags: boolean - showDescription: boolean filter: (f: QuartzPluginData) => boolean sort: (f1: QuartzPluginData, f2: QuartzPluginData) => number } @@ -22,7 +21,6 @@ const defaultOptions = (cfg: GlobalConfiguration): Options => ({ limit: 3, linkToMore: false, showTags: true, - showDescription: false, filter: () => true, sort: byDateAndAlphabetical(cfg), }) @@ -74,10 +72,6 @@ export default ((userOpts?: Partial) => { ))} )} - - {opts.showDescription && page.frontmatter?.description && ( -

{page.frontmatter.description}

- )} )