diff --git a/native/navigation/community-drawer-content.react.js b/native/navigation/community-drawer-content.react.js --- a/native/navigation/community-drawer-content.react.js +++ b/native/navigation/community-drawer-content.react.js @@ -111,24 +111,20 @@ navigate(CommunityCreationRouteName); }, [navigate]); - const isCommunityCreationButtonEnabled = false; - let communityCreationButton; - if (isCommunityCreationButtonEnabled) { - communityCreationButton = ( - - - - - - Create community + const communityCreationButton = ( + + + + - - ); - } + Create community + + + ); return ( diff --git a/web/sidebar/community-picker.react.js b/web/sidebar/community-picker.react.js --- a/web/sidebar/community-picker.react.js +++ b/web/sidebar/community-picker.react.js @@ -74,19 +74,15 @@ modalContext.pushModal(); }, [modalContext]); - const isCommunityCreationButtonEnabled = false; - let communityCreationButton; - if (isCommunityCreationButtonEnabled) { - communityCreationButton = ( - -
-
- -
-
Create community
-
- ); - } + const communityCreationButton = ( + +
+
+ +
+
Create community
+
+ ); const boundUnreadCount = useSelector(unreadCount); let chatBadge = null;