import { MarkdownViewer } from '@renderer/components/chat/viewers/MarkdownViewer'; import type { ParsedMessageReply } from '@renderer/utils/agentMessageFormatting'; interface ReplyQuoteBlockProps { reply: ParsedMessageReply; /** When set, limits height of the reply body (e.g. "max-h-56"). Omit to show full content. */ bodyMaxHeight?: string; } export const ReplyQuoteBlock = ({ reply, bodyMaxHeight = 'max-h-56', }: ReplyQuoteBlockProps): React.JSX.Element => (
{reply.originalText}