Skip to content

Commit

Permalink
Potential Fix for #7152
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidWells committed Mar 19, 2024
1 parent 6266ccc commit 9a6be7c
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,12 @@ function ThematicBreak(props) {
}

function Break(props) {
return <br {...props.attributes} />;
return (
<>
<br {...props.attributes} />
{props.children}
</>
);
}

function BulletedList(props) {
Expand Down

0 comments on commit 9a6be7c

Please sign in to comment.