From 52aa82f850cad421a332edf5ebfa628eb2f3ff9a Mon Sep 17 00:00:00 2001 From: Divyanshu Agrawal Date: Mon, 13 Jul 2020 14:20:19 +0530 Subject: [PATCH] message reaction list: Hide emails from user list. Remove user emails from the user list in the message reactions screen because in this context, the emails mostly feel like clutter. As a side effect of this change, we no longer have to worry about the server 'email_address_visibility' setting for this screen. Fixes: #4188 --- src/reactions/ReactionUserList.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/reactions/ReactionUserList.js b/src/reactions/ReactionUserList.js index a39d6adf55..a837701d5c 100644 --- a/src/reactions/ReactionUserList.js +++ b/src/reactions/ReactionUserList.js @@ -42,7 +42,6 @@ class ReactionUserList extends PureComponent { fullName={user.full_name} avatarUrl={user.avatar_url} email={user.email} - showEmail onPress={() => { this.handlePress(user.user_id); }}