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,