From 8104ad33bff3ffdf86a88aa20af13f724c970045 Mon Sep 17 00:00:00 2001 From: dal Date: Thu, 24 Jul 2025 09:49:05 -0600 Subject: [PATCH] fix the stream component so it can build --- .../ui/typography/AnimatedMarkdown/MarkdownComponent.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/ui/typography/AnimatedMarkdown/MarkdownComponent.tsx b/apps/web/src/components/ui/typography/AnimatedMarkdown/MarkdownComponent.tsx index fb595869f..3ebe312b6 100644 --- a/apps/web/src/components/ui/typography/AnimatedMarkdown/MarkdownComponent.tsx +++ b/apps/web/src/components/ui/typography/AnimatedMarkdown/MarkdownComponent.tsx @@ -13,8 +13,10 @@ type MarkdownComponentProps = { style?: React.CSSProperties; } & Pick< AnimatedMarkdownProps, - 'animation' | 'animationDuration' | 'animationTimingFunction' | 'isStreamFinished' ->; + 'animation' | 'animationDuration' | 'animationTimingFunction' +> & { + isStreamFinished: boolean; +}; type NonAnimatedMarkdownComponentProps = Omit< MarkdownComponentProps,