hide identicon for message owner

This commit is contained in:
Pavel Prichodko 2022-10-09 17:47:54 -05:00
parent e958b1df01
commit e1b300ed2d
No known key found for this signature in database
GPG Key ID: 8E4C82D464215E83
1 changed files with 2 additions and 2 deletions

View File

@ -188,9 +188,9 @@ export const ChatMessage = (props: Props) => {
<Flex gap={2}>
<Box>
<Avatar
size={44}
size={40}
name={member!.username}
colorHash={member!.colorHash}
colorHash={owner ? undefined : member!.colorHash}
/>
</Box>