We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bcb051 commit 9bb3e06Copy full SHA for 9bb3e06
apps/masterbots.ai/components/routes/chat/chat-clickable-text.tsx
@@ -55,7 +55,7 @@ export function ClickableText({
55
if (React.isValidElement(content)) {
56
// Si es un strong, procesamos su contenido manteniendo el texto original
57
if (content.type === 'strong') {
58
- const strongContent = extractTextFromReactNodeNormal(content.props.children)
+ const strongContent = extractTextFromReactNodeNormal((content.props as { children: React.ReactNode }).children)
59
const { clickableText, restText } = parseClickableText(strongContent + ':')
60
61
if (clickableText.trim()) {
0 commit comments