a tool for shared writing and social publishing

Merge branch 'main' into feature/publish-leaflets

+2 -2
+1 -1
app/(home-pages)/notifications/NotificationList.tsx
··· 23 }, 500); 24 }, []); 25 26 - if (notifications.length !== 0) 27 return ( 28 <div className="w-full text-sm flex flex-col gap-1 container italic text-tertiary text-center sm:p-4 p-3"> 29 <div className="text-base font-bold">no notifications yet...</div>
··· 23 }, 500); 24 }, []); 25 26 + if (notifications.length === 0) 27 return ( 28 <div className="w-full text-sm flex flex-col gap-1 container italic text-tertiary text-center sm:p-4 p-3"> 29 <div className="text-base font-bold">no notifications yet...</div>
+1 -1
components/Blocks/TextBlock/RenderYJSFragment.tsx
··· 27 return ( 28 <BlockWrapper wrapper={wrapper} attrs={attrs}> 29 {children.length === 0 ? ( 30 - <div /> 31 ) : ( 32 node.toArray().map((node, index) => { 33 if (node.constructor === XmlText) {
··· 27 return ( 28 <BlockWrapper wrapper={wrapper} attrs={attrs}> 29 {children.length === 0 ? ( 30 + <br /> 31 ) : ( 32 node.toArray().map((node, index) => { 33 if (node.constructor === XmlText) {