From 3d5af69cbdb9820e5515424a38bd230c6f9e6504 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sun, 8 Oct 2023 21:58:05 +0300 Subject: vnext: fix remaining unauthenticated components --- vnext/src/ui/helpers/BubbleStyle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vnext/src/ui/helpers/BubbleStyle.js') 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', -- cgit v1.2.3