diff --git a/ts/components/conversation/ContactName.tsx b/ts/components/conversation/ContactName.tsx index f906a91cf..1a58b0666 100644 --- a/ts/components/conversation/ContactName.tsx +++ b/ts/components/conversation/ContactName.tsx @@ -2,6 +2,7 @@ import React from 'react'; import classNames from 'classnames'; import { Emojify } from './Emojify'; +import { useConversationUsername } from '../../hooks/useParamSelector'; type Props = { pubkey: string; @@ -17,13 +18,15 @@ export const ContactName = (props: Props) => { const { pubkey, name, profileName, module, boldProfileName, compact, shouldShowPubkey } = props; const prefix = module ? module : 'module-contact-name'; - const shouldShowProfile = Boolean(profileName || name); + const convoName = useConversationUsername(pubkey); + + const shouldShowProfile = Boolean(convoName || profileName || name); const styles = (boldProfileName ? { fontWeight: 'bold', } : {}) as React.CSSProperties; - const textProfile = profileName || name || window.i18n('anonymous'); + const textProfile = profileName || name || convoName || window.i18n('anonymous'); const profileElement = shouldShowProfile ? (