saves a message

This commit is contained in:
geoffsee
2025-05-31 17:43:35 -04:00
committed by Geoff Seemueller
parent 810846bb3c
commit 9e6ef975a9
12 changed files with 257 additions and 130 deletions

View File

@@ -238,7 +238,7 @@ const CustomTable: React.FC<{
};
const CustomHtmlBlock: React.FC<{ content: string }> = ({content}) => {
return <Box dangerouslySetInnerHTML={{__html: content}} mb={2}/>;
return <Box as="span" display="inline" dangerouslySetInnerHTML={{__html: content}} mb={2}/>;
};
const CustomText: React.FC<{ text: React.ReactNode }> = ({text}) => {