diff options
Diffstat (limited to 'vnext/src/ui/helpers')
-rw-r--r-- | vnext/src/ui/helpers/BubbleStyle.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vnext/src/ui/helpers/BubbleStyle.js b/vnext/src/ui/helpers/BubbleStyle.js index 23c2df13..d2886e1e 100644 --- a/vnext/src/ui/helpers/BubbleStyle.js +++ b/vnext/src/ui/helpers/BubbleStyle.js @@ -4,7 +4,8 @@ * @returns { import('react').CSSProperties} CSS properties */ export function chatItemStyle(me, msg) { - const isMe = me.uid === msg.user.uid; + const user = msg.user; + const isMe = me.uid === user.uid; const alignment = isMe ? 'flex-end' : 'flex-start'; return { padding: '3px 6px', |