Skip to content

Commit 9bb3e06

Browse files
committed
chore: fix build
1 parent 1bcb051 commit 9bb3e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/masterbots.ai/components/routes/chat/chat-clickable-text.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export function ClickableText({
5555
if (React.isValidElement(content)) {
5656
// Si es un strong, procesamos su contenido manteniendo el texto original
5757
if (content.type === 'strong') {
58-
const strongContent = extractTextFromReactNodeNormal(content.props.children)
58+
const strongContent = extractTextFromReactNodeNormal((content.props as { children: React.ReactNode }).children)
5959
const { clickableText, restText } = parseClickableText(strongContent + ':')
6060

6161
if (clickableText.trim()) {

0 commit comments

Comments
 (0)