diff --git a/ts/components/conversation/Quote.tsx b/ts/components/conversation/Quote.tsx index 539c63f53..ac1904f4c 100644 --- a/ts/components/conversation/Quote.tsx +++ b/ts/components/conversation/Quote.tsx @@ -239,14 +239,7 @@ export const QuoteText = (props: any) => { }; export const QuoteAuthor = (props: any) => { - const { - authorProfileName, - authorPhoneNumber, - authorName, - isFromMe, - isIncoming, - isPublic, - } = props; + const { authorProfileName, authorPhoneNumber, authorName, isFromMe, isIncoming } = props; return (
{ name={authorName} profileName={authorProfileName} compact={true} - shouldShowPubkey={Boolean(isPublic)} + shouldShowPubkey={false} // never show the pubkey for quoted messages author /> )}