fix: account for misalignment of messages that are not last in a series in a 1o1

pull/2757/head
William Grant 2 years ago
parent 712259ddef
commit f5d0530d7a

@ -119,6 +119,10 @@ export const MessageAvatar = (props: Props) => {
);
}, [userName, sender, isPublic, authorAvatarPath, selectedConvoKey]);
if (isPrivate) {
return null;
}
if (!lastMessageOfSeries) {
return <div style={{ marginInlineEnd: '60px' }} key={`msg-avatar-${sender}`} />;
}
@ -128,7 +132,6 @@ export const MessageAvatar = (props: Props) => {
key={`msg-avatar-${sender}`}
style={{
visibility: hideAvatar ? 'hidden' : undefined,
display: isPrivate && hideAvatar ? 'none' : undefined,
}}
>
<Avatar size={AvatarSize.S} onAvatarClick={onMessageAvatarClick} pubkey={sender} />

Loading…
Cancel
Save