First-class profile name rendering

This commit is contained in:
Scott Nonnenberg 2020-07-23 18:35:32 -07:00
parent 632cd0e87e
commit d07b8e82b2
63 changed files with 1044 additions and 454 deletions

View file

@ -114,18 +114,19 @@ export const CompositionArea = ({
showPickerHint,
clearShowPickerHint,
// Message Requests
messageRequestsEnabled,
acceptedMessageRequest,
conversationType,
isBlocked,
messageRequestsEnabled,
name,
onAccept,
onBlock,
onBlockAndDelete,
onUnblock,
onDelete,
profileName,
onUnblock,
phoneNumber,
profileName,
title,
}: Props) => {
const [disabled, setDisabled] = React.useState(false);
const [showMic, setShowMic] = React.useState(!startingText);
@ -333,6 +334,7 @@ export const CompositionArea = ({
name={name}
profileName={profileName}
phoneNumber={phoneNumber}
title={title}
/>
);
}