0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-30 19:42:43 +00:00

Merge pull request #4402 from dbolack-ab/issue_4401

Prevent extra columns
This commit is contained in:
Trevor Buckner
2025-08-30 18:52:26 -04:00
committed by GitHub

View File

@@ -40,7 +40,7 @@ const BrewPage = (props)=>{
...props
};
const pageRef = useRef(null);
const cleanText = safeHTML(`${props.contents}\n<div class="columnSplit"></div>\n`);
const cleanText = safeHTML(props.contents);
useEffect(()=>{
if(!pageRef.current) return;