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}

- )} )