diff --git a/packages/pl-fe/src/features/compose/components/reply-indicator.tsx b/packages/pl-fe/src/features/compose/components/reply-indicator.tsx index df4fbba4a..daf367cdd 100644 --- a/packages/pl-fe/src/features/compose/components/reply-indicator.tsx +++ b/packages/pl-fe/src/features/compose/components/reply-indicator.tsx @@ -4,6 +4,7 @@ import React from 'react'; import AttachmentThumbs from '@/components/attachment-thumbs'; import Markup from '@/components/markup'; import { ParsedContent } from '@/components/parsed-content'; +import QuotedStatusIndicator from '@/components/quoted-status-indicator'; import Stack from '@/components/ui/stack'; import AccountContainer from '@/containers/account-container'; import { getTextDirection } from '@/utils/rtl'; @@ -25,6 +26,7 @@ interface IReplyIndicator { | 'sensitive' | 'spoiler_text' | 'quote_id' + | 'quote_url' >; onCancel?: () => void; hideActions: boolean; @@ -81,6 +83,10 @@ const ReplyIndicator: React.FC = ({ {status.media_attachments.length > 0 && } + + {status.quote_id && ( + + )} ); };