a tool for shared writing and social publishing

replace br tags w/ div

+2 -2
+2 -2
components/Blocks/TextBlock/RenderYJSFragment.tsx
··· 19 19 return ( 20 20 <BlockWrapper wrapper={wrapper} attrs={attrs}> 21 21 {children.length === 0 ? ( 22 - <br /> 22 + <div /> 23 23 ) : ( 24 24 node 25 25 .toArray() ··· 29 29 ); 30 30 } 31 31 case "hard_break": 32 - return <br />; 32 + return <div />; 33 33 default: 34 34 return null; 35 35 }