0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 16:22:44 +00:00

Remove extra column break entirely

Not needed with change to column-fill auto

See https://github.com/naturalcrit/homebrewery/pull/3013
This commit is contained in:
Trevor Buckner
2025-03-05 20:13:35 -05:00
parent 88e8140b60
commit 51e79c2c5f

View File

@@ -197,7 +197,6 @@ const BrewRenderer = (props)=>{
}
let html = Markdown.render(pageText, index);
if(html.indexOf(`\n<div class='columnSplit'></div>\n`) == -1) html += `\n<div class='columnSplit'></div>\n`;
return <BrewPage className={classes} index={index} key={index} contents={html} style={styles} attributes={attributes} onVisibilityChange={handlePageVisibilityChange} />;
}