From 3a4c9e75bf0ef33219abbd7cc56723ca063b98b5 Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Tue, 8 Jun 2021 19:58:13 +0200 Subject: [PATCH] Fixed the warning about isCustomStatusEnabled prop in ChannelInfo (#5436) (#5439) --- app/screens/channel_info/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/screens/channel_info/index.js b/app/screens/channel_info/index.js index d76a639f2..9de3a5187 100644 --- a/app/screens/channel_info/index.js +++ b/app/screens/channel_info/index.js @@ -32,7 +32,7 @@ function makeMapStateToProps() { let teammateId; let isTeammateGuest = false; - let customStatusEnabled; + let customStatusEnabled = false; let customStatus; const isDirectMessage = currentChannel.type === General.DM_CHANNEL;