hide identicon for message owner

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

View File

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