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() {