Removed markdown to not cause problems

This commit is contained in:
Lucas Oliveira 2024-06-23 16:31:49 -03:00 committed by Gabriel Luiz Freitas Almeida
commit a8c474588c

View file

@ -186,7 +186,7 @@ export default function ChatMessage({
/>
) : (
<Markdown
remarkPlugins={[remarkGfm, remarkMath]}
remarkPlugins={[remarkGfm]}
rehypePlugins={[rehypeMathjax]}
className={cn(
"markdown prose flex flex-col word-break-break-word dark:prose-invert",
@ -205,18 +205,19 @@ export default function ChatMessage({
children,
...props
}) => {
if ((children as string)!.length) {
if (children![0] === "▍") {
return (
<span className="form-modal-markdown-span">
</span>
);
if(typeof children === "string"){
if ((children as string)!.length) {
if (children![0] === "▍") {
return (
<span className="form-modal-markdown-span">
</span>
);
}
children![0] = (
children![0] as string
).replace("`▍`", "▍");
}
children![0] = (
children![0] as string
).replace("`▍`", "▍");
}
const match = /language-(\w+)/.exec(