diff --git a/web/app/changelog/page.tsx b/web/app/changelog/page.tsx index b63944f..76cdc5c 100644 --- a/web/app/changelog/page.tsx +++ b/web/app/changelog/page.tsx @@ -4,10 +4,7 @@ import path from "path" async function getChangelog() { const changelogPath = path.join(process.cwd(), "..", "CHANGELOG.md") try { - const fileContents = fs.readFileSync(changelogPath, "utf8") - - // Asegurar que el contenido HTML no tiene espacios innecesarios - return fileContents.trim() + return fs.readFileSync(changelogPath, "utf8") } catch (error) { console.error("Error reading changelog file:", error) return "

Changelog content not found.

" @@ -18,21 +15,12 @@ export default async function ChangelogPage() { const changelogContent = await getChangelog() return ( -
+
-

Changelog

- {/* Eliminamos el recuadro, bordes y cualquier estilo que fuerce texto plano */} -
+

Changelog

+
) } +