Skip to content

Commit

Permalink
fix: broken release notes page (#1578)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Sep 29, 2023
1 parent 9f41cac commit 554733b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/theme/ReleaseNotes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function App(props) {
.then((response) => response.text())
.then((result) => {
result = result
.split('## ')
.split('## \\[')
.filter((item) => !item.includes('# Changelog'))
.map((version) => {
var [number, ...contents] = version.split('\n')
Expand Down

0 comments on commit 554733b

Please sign in to comment.