diff --git a/web/app/changelog/page.tsx b/web/app/changelog/page.tsx index 50d3f2f..2608088 100644 --- a/web/app/changelog/page.tsx +++ b/web/app/changelog/page.tsx @@ -6,7 +6,9 @@ async function getChangelog() { const changelogPath = path.join(process.cwd(), "..", "CHANGELOG.md") try { const fileContents = fs.readFileSync(changelogPath, "utf8") - return fileContents + + // Asegurar que los saltos de lĂ­nea dobles se respeten + return fileContents.replace(/\r?\n/g, " \n") } catch (error) { console.error("Error reading changelog file:", error) return "Changelog content not found."