From 7cc57c2dbe82d92c24032188091ac46d24c0cfe6 Mon Sep 17 00:00:00 2001 From: Manoj Malik <77336594+manojmalik20@users.noreply.github.com> Date: Tue, 8 Jun 2021 23:02:24 +0530 Subject: [PATCH] Fixed the warning about isCustomStatusEnabled prop in ChannelInfo (#5436) --- 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;