aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/helpers/BubbleStyle.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-10-08 21:58:05 +0300
committerGravatar Vitaly Takmazov2023-10-08 21:58:05 +0300
commit3d5af69cbdb9820e5515424a38bd230c6f9e6504 (patch)
tree93367577b6c5a5db931e0bbc74d69788d0a05dd4 /vnext/src/ui/helpers/BubbleStyle.js
parent69ec9ec1d468eae71c0bd02b7dd7d6d6c13d291c (diff)
vnext: fix remaining unauthenticated components
Diffstat (limited to 'vnext/src/ui/helpers/BubbleStyle.js')
-rw-r--r--vnext/src/ui/helpers/BubbleStyle.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/ui/helpers/BubbleStyle.js b/vnext/src/ui/helpers/BubbleStyle.js
index def60b62..3b21d1fb 100644
--- a/vnext/src/ui/helpers/BubbleStyle.js
+++ b/vnext/src/ui/helpers/BubbleStyle.js
@@ -5,7 +5,7 @@
*/
export function chatItemStyle(me, msg) {
const user = msg.user
- const isMe = me.uid === user.uid
+ const isMe = me && me.uid === user.uid
const alignment = isMe ? 'flex-end' : 'flex-start'
return {
padding: '3px 6px',