diff --git a/app/javascript/chat/channels.jsx b/app/javascript/chat/channels.jsx
index a97c2abf2..41140e86c 100644
--- a/app/javascript/chat/channels.jsx
+++ b/app/javascript/chat/channels.jsx
@@ -78,7 +78,17 @@ const Channels = ({ activeChannelId, chatChannels, handleSwitchChannel, expanded
channelsLoaded &&
(channels.length === 0 || channels[0].messages_count === 0) ) {
topNotice =
- 👋 Welcome to DEV Connect! You can may chat with anyone you mutually follow.
+ 👋 Welcome to DEV Connect! You may message anyone you mutually follow.
+
+ }
+ let configFooter = ''
+ if (expanded) {
+ configFooter =
+

+
}
return (
@@ -88,13 +98,7 @@ const Channels = ({ activeChannelId, chatChannels, handleSwitchChannel, expanded
{channels}
{channelsListFooter}
-
-

-
-
+ {configFooter}
);
};