From a773b91f05827bad9ebc3a99c8d78d1f150dbfe1 Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Fri, 14 Feb 2025 19:21:23 +0100 Subject: [PATCH] Update page.tsx --- web/app/changelog/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/app/changelog/page.tsx b/web/app/changelog/page.tsx index e64be2b..826f741 100644 --- a/web/app/changelog/page.tsx +++ b/web/app/changelog/page.tsx @@ -5,7 +5,9 @@ async function getChangelog() { const changelogPath = path.join(process.cwd(), "..", "CHANGELOG.md") try { const fileContents = fs.readFileSync(changelogPath, "utf8") - return fileContents // Ahora el archivo ya es HTML, no necesita conversión + + + return fileContents.trim() } catch (error) { console.error("Error reading changelog file:", error) return "

Changelog content not found.

" @@ -21,7 +23,7 @@ export default async function ChangelogPage() {

Changelog