mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-22 23:31:12 +02:00
refactor(changelog): remove title and description fields from changelog entries and update schema
This commit is contained in:
parent
1c6227eef3
commit
c9351c421e
18 changed files with 6 additions and 38 deletions
|
|
@ -24,8 +24,6 @@ const source = loader({
|
|||
});
|
||||
|
||||
interface ChangelogData {
|
||||
title: string;
|
||||
description: string;
|
||||
date: string;
|
||||
version?: string;
|
||||
body: ComponentType<{ components?: MDXComponents }>;
|
||||
|
|
@ -50,8 +48,6 @@ export default async function ChangelogPage() {
|
|||
return {
|
||||
version: changelog.data.version ? `Version ${changelog.data.version}` : "Release",
|
||||
date: formatDate(date),
|
||||
title: changelog.data.title,
|
||||
description: changelog.data.description,
|
||||
content: <MDX components={getMDXComponents()} />,
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue