Fix issue with "props.aux" being inserted instead of e.g. "sent an image"
This commit is contained in:
parent
b4ed9d7c87
commit
7414d4d1f9
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ export default function SenderProfile(props) {
|
|||
<div className="mx_SenderProfile" dir="auto" onClick={props.onClick}>
|
||||
<EmojiText>{name || ''}</EmojiText>
|
||||
{props.enableFlair ? <Flair userId={mxEvent.getSender()} /> : null}
|
||||
{props.aux ? <EmojiText> props.aux</EmojiText> : null}
|
||||
{props.aux ? <EmojiText> {props.aux}</EmojiText> : null}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue