diff --git a/react/features/chat/components/web/Chat.js b/react/features/chat/components/web/Chat.js index 6bcebac1a..96ca6260a 100644 --- a/react/features/chat/components/web/Chat.js +++ b/react/features/chat/components/web/Chat.js @@ -130,17 +130,10 @@ class Chat extends AbstractChat { const messages = groupedMessages.map((group, index) => { const messageType = group[0] && group[0].messageType; - let className = 'remote'; - - if (messageType === 'local') { - className = 'local'; - } else if (messageType === 'error') { - className = 'error'; - } return ( );