refactor(changelog): remove title and description fields from changelog entries and update schema

This commit is contained in:
Anish Sarkar 2026-06-09 10:13:27 +05:30
parent 1c6227eef3
commit c9351c421e
18 changed files with 6 additions and 38 deletions

View file

@ -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()} />,
};
});